]> git.ipfire.org Git - people/arne_f/ipfire-3.x.git/blobdiff - pkgs/libnfsidmap/libnfsidmap.nm
Change file layout of the makefiles.
[people/arne_f/ipfire-3.x.git] / pkgs / libnfsidmap / libnfsidmap.nm
index 188cf52c151402111bd4d03e8422d4efeef1081b..eb7894d464a90e13311519cb9a67889b05e0fde8 100644 (file)
@@ -1,66 +1,55 @@
 ###############################################################################
-#                                                                             #
-# 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       = libnfsidmap
-PKG_VER        = 0.21
-PKG_REL        = 0
+name       = libnfsidmap
+version    = 0.21
+release    = 1
 
-PKG_MAINTAINER =
-PKG_GROUPS     = System/Libraries
-PKG_URL        = http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/
-PKG_LICENSE    = BSD
-PKG_SUMMARY    = Library to help mapping id's, mainly for NFSv4.
+groups     = System/Libraries
+url        = http://www.citi.umich.edu/projects/nfsv4/linux/libnfsidmap/
+license    = BSD
+summary    = Library to help mapping id's, mainly for NFSv4.
 
-PKG_BUILD_DEPS+= gcc-c++
-
-define PKG_DESCRIPTION
+description
        libnfsidmap provides functions to map between NFSv4 names \
        (which are of the form user@domain) and local uid's and gid's.
-endef
+end
+
+source_dl  =
+
+build
+       requires
+               gcc-c++
+       end
 
-PKG_TARBALL    = $(THISAPP).tar.gz
+       configure_options += --libdir=/lib
 
-PKG_PACKAGES  += $(PKG_NAME_REAL)-devel
+       install_cmds
+               mkdir -pv %{BUILDROOT}/usr/lib
 
-CONFIGURE_OPTIONS += --libdir=/lib
+               mv -v %{BUILDROOT}/lib/pkgconfig %{BUILDROOT}/usr/lib/
 
-define STAGE_INSTALL_CMDS
-       -mkdir -pv $(BUILDROOT)/usr/lib
+               rm -vf %{BUILDROOT}/lib/libnfsidmap.so
+               ln -svf ../../lib/libnfsidmap.so.0 \
+                       %{BUILDROOT}/usr/lib/libnfsidmap.so
 
-       mv -v $(BUILDROOT)/lib/pkgconfig $(BUILDROOT)/usr/lib/
+               rm -vf %{BUILDROOT}/lib/libnfsidmap_nsswitch.so
+               ln -svf ../../lib/libnfsidmap_nsswitch.so.0 \
+                       %{BUILDROOT}/usr/lib/libnfsidmap_nsswitch.so
 
-       rm -vf $(BUILDROOT)/lib/libnfsidmap.so
-       ln -svf ../../lib/libnfsidmap.so.0 \
-               $(BUILDROOT)/usr/lib/libnfsidmap.so
+               rm -vf %{BUILDROOT}/lib/libnfsidmap_static.so
+               ln -svf ../../lib/libnfsidmap_static.so.0 \
+                       %{BUILDROOT}/usr/lib/libnfsidmap_static.so
+       end
+end
 
-       rm -vf $(BUILDROOT)/lib/libnfsidmap_nsswitch.so
-       ln -svf ../../lib/libnfsidmap_nsswitch.so.0 \
-               $(BUILDROOT)/usr/lib/libnfsidmap_nsswitch.so
+packages
+       package %{name}
+       end
        
-       rm -vf $(BUILDROOT)/lib/libnfsidmap_static.so
-       ln -svf ../../lib/libnfsidmap_static.so.0 \
-               $(BUILDROOT)/usr/lib/libnfsidmap_static.so
-endef
+       package %{name}-devel
+               template DEVEL
+       end
+end