]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blob - pkgs/xorg-x11-font-utils/xorg-x11-font-utils.nm
Move packages to pkgs subdirectory.
[people/ms/ipfire-3.x.git] / pkgs / xorg-x11-font-utils / xorg-x11-font-utils.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 = xorg-x11-font-utils
28 PKG_VER = 7.4
29 PKG_REL = 1
30
31 PKG_MAINTAINER = Stefan Schantl <stefan.schantl@ipfire.org>
32 PKG_GROUP = X/Fonts
33 PKG_URL = http://www.x.org/
34 PKG_LICENSE = MIT
35 PKG_SUMMARY = X.Org X11 font utilities.
36
37 PKG_BUILD_DEPS+= autoconf freetype-devel libX11-devel libXfont-devel libfontenc-devel\
38 pkg-config xorg-x11-proto-devel zlib-devel
39
40 PKG_PACKAGES += $(PKG_NAME)-devel
41
42 define PKG_DESCRIPTION
43 X.Org X11 font utilities required for font installation, conversion, \
44 and generation.
45 endef
46
47 SRC_PACKAGES = \
48 bdftopcf-1.0.1 \
49 fonttosfnt-1.0.3 \
50 mkfontdir-1.0.5 \
51 mkfontscale-1.0.7 \
52 font-util-1.1.0
53
54 PKG_OBJECTS += $(foreach package,$(SRC_PACKAGES),$(package).tar.bz2)
55
56 define STAGE_PREPARE
57 for object in $(PKG_OBJECTS); do \
58 cd $(DIR_SRC) && $(DO_EXTRACT) $(DIR_DL)/$${object}; \
59 done
60 endef
61
62 define MACRO_BUILD
63 cd $(DIR_SRC)/$(1) && autoconf
64 cd $(DIR_SRC)/$(1) && \
65 ./configure \
66 --prefix=/usr \
67 --with-mapdir=/usr/share/X11/fonts/util
68
69 cd $(DIR_SRC)/$(1) && make $(PARALLELISMFLAGS)
70
71 endef
72
73 STAGE_BUILD = $(foreach package,$(SRC_PACKAGES),$(call MACRO_BUILD,$(package)))
74
75 define MACRO_INSTALL
76 cd $(DIR_SRC)/$(1) && make install DESTDIR=$(BUILDROOT)
77
78 endef
79
80 STAGE_INSTALL = $(foreach package,$(SRC_PACKAGES),$(call MACRO_INSTALL,$(package)))
81
82