]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pkgs/logrotate/logrotate.nm
Remove legacy build system.
[people/ms/ipfire-3.x.git] / pkgs / logrotate / logrotate.nm
1 ###############################################################################
2 # #
3 # IPFire.org - A linux based firewall #
4 # Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt #
5 # #
6 # This program is free software: you can redistribute it and/or modify #
7 # it under the terms of the GNU General Public License as published by #
8 # the Free Software Foundation, either version 3 of the License, or #
9 # (at your option) any later version. #
10 # #
11 # This program is distributed in the hope that it will be useful, #
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
14 # GNU General Public License for more details. #
15 # #
16 # You should have received a copy of the GNU General Public License #
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
18 # #
19 ###############################################################################
20
21 ###############################################################################
22 # Definitions
23 ###############################################################################
24
25 include $(PKGROOT)/Include
26
27 PKG_NAME = logrotate
28 PKG_VER = 3.7.7
29 PKG_REL = 1
30
31 PKG_MAINTAINER =
32 PKG_GROUP = System/Base
33 PKG_URL = https://fedorahosted.org/releases/l/o/logrotate/
34 PKG_LICENSE = GPL+
35 PKG_SUMMARY = Rotates, compresses, removes and mails system log files.
36
37 PKG_BUILD_DEPS+= coreutils gzip libselinux-devel popt-devel which
38
39 define PKG_DESCRIPTION
40 The logrotate utility is designed to simplify the administration of \
41 log files on a system which generates a lot of log files. Logrotate \
42 allows for the automatic rotation compression, removal and mailing of \
43 log files. Logrotate can be set to handle a log file daily, weekly, \
44 monthly or when the log file gets to a certain size.
45 endef
46
47 PKG_TARBALL = $(THISAPP).tar.gz
48
49 define STAGE_BUILD
50 cd $(DIR_APP) && make RPM_OPT_FLAGS="$(CFLAGS)" WITH_SELINUX=yes $(PARALLELISMFLAGS)
51 endef
52
53 define STAGE_TEST
54 cd $(DIR_APP) && make test
55 endef
56
57 define STAGE_INSTALL
58 cd $(DIR_APP) && make install BASEDIR=/usr PREFIX=$(BUILDROOT) \
59 MANDIR=/usr/share/man
60
61 -mkdir -pv $(BUILDROOT)/var/lib
62 touch $(BUILDROOT)/var/lib/logrotate.status
63
64 # Creating directory for config files
65 mkdir -pv $(BUILDROOT)/etc/logrotate.d
66 endef