]> git.ipfire.org Git - people/amarx/ipfire-3.x.git/blobdiff - pkgs/xfsprogs/xfsprogs.nm
Change file layout of the makefiles.
[people/amarx/ipfire-3.x.git] / pkgs / xfsprogs / xfsprogs.nm
index 865992bc966881138eb7e6db068a076dd7c017ec..24dfbc0ac32837c7b3b19188e6a8a9e4ff39368e 100644 (file)
@@ -1,76 +1,70 @@
 ###############################################################################
-#                                                                             #
-# 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
+name       = xfsprogs
+version    = 3.1.2
+release    = 1
 
-PKG_NAME       = xfsprogs
-PKG_VER        = 3.1.2
-PKG_REL        = 0
+groups     = System/Filesystems
+url        = http://oss.sgi.com/projects/xfs/
+license    = GPL+ and LGPLv2+
+summary    = Utilities for managing the XFS filesystem
 
-PKG_MAINTAINER =
-PKG_GROUPS     = System/Filesystems
-PKG_URL        = http://oss.sgi.com/projects/xfs/
-PKG_LICENSE    = GPL+ and LGPLv2+
-PKG_SUMMARY    = Utilities for managing the XFS filesystem
+description
+       A set of commands to use the XFS filesystem, including mkfs.xfs.
+end
 
-PKG_BUILD_DEPS+= e2fsprogs-devel gettext libacl-devel libblkid-devel libtool \
-       libuuid-devel readline-devel
+source_dl  = ftp://oss.sgi.com/projects/xfs/cmd_tars/
 
-define PKG_DESCRIPTION
-       A set of commands to use the XFS filesystem, including mkfs.xfs.
-endef
+build
+       requires
+               e2fsprogs-devel
+               gettext
+               libacl-devel
+               libblkid-devel
+               libtool
+               libuuid-devel
+               readline-devel
+       end
 
-PKG_TARBALL    = $(THISAPP).tar.gz
+       configure_options += \
+               --mandir=/usr/share/man \
+               --bindir=/sbin \
+               --sbindir=/sbin \
+               --libdir=/lib \
+               --libexecdir=/usr/lib \
+               --enable-readline=yes \
+               --enable-blkid=yes \
+               --disable-static
 
-PKG_PACKAGES  += $(PKG_NAME)-devel
+       configure_cmds
+               # Kill rpaths
+               sed -i libtool \
+                       -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
+                       -e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g'
+       end
 
-define STAGE_BUILD
-       cd $(DIR_APP) && \
-               ./configure \
-                       --prefix=/usr \
-                       --mandir=/usr/share/man \
-                       --bindir=/sbin \
-                       --sbindir=/sbin \
-                       --libdir=/lib \
-                       --libexecdir=/usr/lib \
-                       --enable-readline=yes \
-                       --enable-blkid=yes \
-                       --disable-static
+       make_build_targets +=\
+               V=1 DEBUG=-DNDEBUG
 
-       # Kill rpaths
-       cd $(DIR_APP) && sed -i libtool \
-               -e 's|^hardcode_libdir_flag_spec=.*|hardcode_libdir_flag_spec=""|g' \
-               -e 's|^runpath_var=LD_RUN_PATH|runpath_var=DIE_RPATH_DIE|g'
 
-       cd $(DIR_APP) && make V=1 DEBUG=-DNDEBUG
-endef
+       install
+               make install install-dev install-qa DIST_ROOT=%{BUILDROOT}
 
-define STAGE_INSTALL
-       cd $(DIR_APP) && make install install-dev install-qa DIST_ROOT=$(BUILDROOT)
+               chmod -v 755 %{BUILDROOT}/lib/libhandle.so*
+               rm -vf %{BUILDROOT}/lib/libhandle.so
+               mkdir -pv %{BUILDROOT}/usr/lib
+               ln -svf ../../lib/libhandle.so.1 %{BUILDROOT}/usr/lib/libhandle.so
+       end
+end
 
-       chmod -v 755 $(BUILDROOT)/lib/libhandle.so*
-       rm -vf $(BUILDROOT)/lib/libhandle.so
-       -mkdir -pv $(BUILDROOT)/usr/lib
-       ln -svf ../../lib/libhandle.so.1 $(BUILDROOT)/usr/lib/libhandle.so
-endef
+packages
+       package %{name}
+       end
+       
+       package %{name}-devel
+               template DEVEL
+       end
+end