]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blobdiff - pkgs/xorg-x11-xkb-utils/xorg-x11-xkb-utils.nm
Change file layout of the makefiles.
[people/ms/ipfire-3.x.git] / pkgs / xorg-x11-xkb-utils / xorg-x11-xkb-utils.nm
index 4063c53ff8dcaa9d23bb4ade16403cc765ddce89..25abfb7c98244e4201fe8fb54049b8795749fb72 100644 (file)
@@ -1,84 +1,68 @@
 ###############################################################################
-#                                                                             #
-# 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       = xorg-x11-xkb-utils
-PKG_VER        = 7.4
-PKG_REL        = 1
-
-PKG_MAINTAINER = Stefan Schantl <stefan.schantl@ipfire.org>
-PKG_GROUPS     = X/Fonts
-PKG_URL        = http://www.x.org/
-PKG_LICENSE    = MIT
-PKG_SUMMARY    = X.Org X11 xkb utilities.
+name       = xorg-x11-xkb-utils
+version    = 7.4
+release    = 1
 
-PKG_BUILD_DEPS+= bison libICE-devel libSM-devel libX11-devel libXaw-devel \
-       libXmu-devel libXt-devel libxkbfile-devel pkg-config xorg-x11-proto-devel
+maintainer = Stefan Schantl <stefan.schantl@ipfire.org>
+groups     = X/Fonts
+url        = http://www.x.org/
+license    = MIT
+summary    = X.Org X11 xkb utilities.
 
-define PKG_DESCRIPTION
+description
        X.Org X11 xkb utilities.
-endef
-
-CFLAGS        += -DHAVE_STRCASECMP
-
-SRC_PACKAGES = \
-       xkbcomp-1.1.1 \
-       xkbutils-1.0.3 \
-       xkbevd-1.1.1 \
-       xkbprint-1.0.1 \
-       setxkbmap-1.2.0
-
-PKG_OBJECTS += $(foreach package,$(SRC_PACKAGES),$(package).tar.bz2)
-
-define STAGE_PREPARE
-       for object in $(PKG_OBJECTS); do \
-               cd $(DIR_SRC) && $(DO_EXTRACT) $(DIR_DL)/$${object}; \
-       done
-endef
-
-define MACRO_BUILD
-       cd $(DIR_SRC)/$(1) && rm -vf xkbparse.c # force regen
-       cd $(DIR_SRC)/$(1) && \
-               ./configure \
-                       --prefix=/usr
-
-       cd $(DIR_SRC)/$(1) && make $(PARALLELISMFLAGS)
-
-endef
-
-STAGE_BUILD = $(foreach package,$(SRC_PACKAGES),$(call MACRO_BUILD,$(package)))
-
-define MACRO_INSTALL
-       cd $(DIR_SRC)/$(1) && make install DESTDIR=$(BUILDROOT)
-
-endef
-
-define STAGE_INSTALL
-       $(foreach package,$(SRC_PACKAGES),$(call MACRO_INSTALL,$(package)))
-
-       mv $(BUILDROOT)/usr/man* $(BUILDROOT)/usr/share/man
-endef
-
-
+end
+
+configure_options += \
+       --mandir=/usr/share/man
+
+CFLAGS += -DHAVE_STRCASECMP
+
+source_dl = http://ftp.x.org/pub/individual/app/
+sources = \
+       xkbcomp-1.1.1.tar.bz2 \
+       xkbutils-1.0.3.tar.bz2 \
+       xkbevd-1.1.1.tar.bz2 \
+       xkbprint-1.0.1.tar.bz2 \
+       setxkbmap-1.2.0.tar.bz2
+
+build
+       requires
+               bison
+               libICE-devel
+               libSM-devel
+               libX11-devel
+               libXaw-devel
+               libXmu-devel
+               libXt-devel
+               libxkbfile-devel
+               pkg-config
+               xorg-x11-proto-devel
+       end
+
+       build
+               for object in %{sources}; do
+                       cd %{DIR_SRC}/${object%*.tar.bz2}
+                       rm -vf xkbparse.c # force regen
+                       ./configure %{configure_options}
+
+                       make %{PARALELLISMFLAGS}
+               done
+       end
+
+       install
+               for object in %{sources}; do
+                       cd %{DIR_SRC}/${object%*.tar.bz2}
+                       make install DESTDIR=%{BUILDROOT}
+               done
+       end
+end
+
+packages
+       package %{name}
+       end
+end