]> git.ipfire.org Git - ipfire-3.x.git/blob - pkgs/glib2/glib2.nm
glib2: Update to 2.28.8.
[ipfire-3.x.git] / pkgs / glib2 / glib2.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 = glib
28 PKG_VER = 2.28.8
29 PKG_REL = 1
30
31 PKG_MAINTAINER =
32 PKG_GROUPS = System/Libraries
33 PKG_URL = http://www.gtk.org
34 PKG_LICENSE = LGPLv2+
35 PKG_SUMMARY = A library of handy utility functions.
36
37 PKG_BUILD_DEPS+= gettext libselinux-devel pcre-devel pkg-config zlib-devel
38
39 define PKG_DESCRIPTION
40 GLib is the low-level core library that forms the basis \
41 for projects such as GTK+ and GNOME. It provides data structure \
42 handling for C, portability wrappers, and interfaces for such runtime \
43 functionality as an event loop, threads, dynamic loading, and an \
44 object system.
45 endef
46
47 PKG_TARBALL = $(THISAPP).tar.xz
48
49 PKG_PACKAGES += $(PKG_NAME)2-devel
50
51 CONFIGURE_OPTIONS += \
52 --sysconfdir=/etc \
53 --with-pcre=system
54
55 define STAGE_INSTALL_CMDS
56 cd $(DIR_APP) && ./mkinstalldirs $(BUILDROOT)/lib
57 cd $(BUILDROOT)/usr/lib && for name in glib gobject gmodule gthread gio; do \
58 mv -v lib$${name}-2.0.so.* ../../lib; \
59 ln -svf ../../lib/lib$${name}-2.0.so.*.* lib$${name}-2.0.so; \
60 done
61
62 -mkdir -pv $(BUILDROOT)/etc/profile.d/
63 cp -vf $(DIR_SOURCE)/glib2-locale.sh $(BUILDROOT)/etc/profile.d/
64 endef