]> git.ipfire.org Git - ipfire-3.x.git/blobdiff - pkgs/initscripts/initscripts.nm
Change file layout of the makefiles.
[ipfire-3.x.git] / pkgs / initscripts / initscripts.nm
index 4830e766e7bd9fb25947c87253b8d684caa91cb1..c4fe57285cd572ddfcc047b66afba6d1505e7d79 100644 (file)
@@ -1,78 +1,80 @@
 ###############################################################################
-#                                                                             #
-# IPFire.org - A linux based firewall                                         #
-# Copyright (C) 2007, 2008 Michael Tremer & Christian Schmidt                 #
-#                                                                             #
-# This program is free software: you can redistribute it and/or modify        #
-# it under the terms of the GNU General Public License as published by        #
-# the Free Software Foundation, either version 3 of the License, or           #
-# (at your option) any later version.                                         #
-#                                                                             #
-# This program is distributed in the hope that it will be useful,             #
-# but WITHOUT ANY WARRANTY; without even the implied warranty of              #
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the               #
-# GNU General Public License for more details.                                #
-#                                                                             #
-# You should have received a copy of the GNU General Public License           #
-# along with this program.  If not, see <http://www.gnu.org/licenses/>.       #
-#                                                                             #
+# IPFire.org    - An Open Source Firewall Solution                            #
+# Copyright (C) - IPFire Development Team <info@ipfire.org>                   #
 ###############################################################################
 
-###############################################################################
-# Definitions
-###############################################################################
-
-include $(PKGROOT)/Include
-
-PKG_NAME       = initscripts
-PKG_EPOCH      = 1
-PKG_VER        = 2.99
-PKG_REL        = 5
+name       = initscripts
+epoch      = 1
+version    = 2.99
+release    = 5
 
-PKG_MAINTAINER =
-PKG_GROUPS     = Base System/Boot
-PKG_URL        =
-PKG_LICENSE    = GPLv3+
-PKG_SUMMARY    = The set of scripts that initalize the system.
+groups     = Base System/Boot
+url        =
+license    = GPLv3+
+summary    = The set of scripts that initalize the system.
 
-PKG_BUILD_DEPS+= glib2-devel popt-devel
-PKG_DEPS      += bash coreutils e2fsprogs grep iproute2 module-init-tools \
-       procps sed system-release udev util-linux
-
-define PKG_DESCRIPTION
+description
        The initscripts package contains the basic system scripts used to boot \
        your system and shut the system down cleanly.
-endef
-
-DIR_APP = $(DIR_SOURCE)
-
-define STAGE_PREPARE_CMDS
-       cd $(DIR_APP)/src && make clean
-endef
-
-define STAGE_BUILD
-       cd $(DIR_APP)/src && make $(PARALLELISMFLAGS)
-endef
-
-define STAGE_TEST
-       cd $(DIR_APP)/src && make test
-endef
-
-define STAGE_INSTALL
-       cd $(DIR_APP)/src && make install clean DESTDIR=$(BUILDROOT)
-
-       -mkdir -pv $(BUILDROOT)/etc/{init,sysconfig}
-
-       cp -vf $(DIR_SOURCE)/functions $(BUILDROOT)/etc/init/
-
-       for i in $(DIR_SOURCE)/sysconfig/*; do \
-               install -v -m 644 $$i $(BUILDROOT)/etc/sysconfig/; \
-       done
-       chmod -v 755 $(BUILDROOT)/etc/sysconfig/rc.local
-
-       cp -vf $(DIR_SOURCE)/sysctl.conf $(BUILDROOT)/etc
-
-       # Install udev rules
-       -mkdir -pv $(BUILDROOT)/lib/udev/rules.d/
-       cp -vf $(DIR_SOURCE)/udev/* $(BUILDROOT)/lib/udev/rules.d/
-endef
+end
+
+# Nothing to download.
+sources    =
+
+build
+       requires
+               glib2-devel
+               popt-devel
+       end
+
+       DIR_APP = %{DIR_SOURCE}
+
+       prepare_cmds
+               cd src && make clean
+       end
+
+       build
+               cd src && make %{PARALLELISMFLAGS}
+       end
+
+       test
+               cd src && make test
+       end
+
+       install
+               cd src && make install clean DESTDIR=%{BUILDROOT}
+
+               mkdir -pv %{BUILDROOT}/etc/{init,sysconfig}
+
+               cp -vf %{DIR_SOURCE}/functions %{BUILDROOT}/etc/init/
+
+               for i in %{DIR_SOURCE}/sysconfig/*; do
+                       install -v -m 644 $i %{BUILDROOT}/etc/sysconfig/
+               done
+               chmod -v 755 %{BUILDROOT}/etc/sysconfig/rc.local
+
+               cp -vf %{DIR_SOURCE}/sysctl.conf %{BUILDROOT}/etc
+
+               # Install udev rules
+               mkdir -pv %{BUILDROOT}/lib/udev/rules.d/
+               cp -vf %{DIR_SOURCE}/udev/* %{BUILDROOT}/lib/udev/rules.d/
+       end
+end
+
+packages
+       package %{name}
+               requires
+                       bash
+                       coreutils
+                       e2fsprogs
+                       grep
+                       iproute2
+                       module-init-tools
+                       procps
+                       sed
+                       system-release
+                       udev
+                       util-linux
+               end
+       end
+end