summaryrefslogtreecommitdiff
path: root/package/gconf/Makefile
blob: 1ba24df9ceebd154e2f006ab216427d3bda47b7e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.

include $(TOPDIR)/rules.mk

PKG_NAME:=		GConf
PKG_VERSION:=		3.2.6
PKG_EXTRAVER:=		3.2
PKG_RELEASE:=		1
PKG_MD5SUM:=		2b16996d0e4b112856ee5c59130e822c
PKG_DESCR:=		system for storing application preferences
PKG_SECTION:=		libs/misc
PKG_BUILDDEP:=		dbus dbus-glib orbit2
PKG_DEPENDS:=		dbus dbus-glib orbit2
PKG_URL:=		http://projects.gnome.org/gconf/
PKG_SITES:=		ftp://ftp.gnome.org/pub/GNOME/sources/GConf/${PKG_EXTRAVER}/
PKG_LIBNAME:=		gconf
PKG_OPTS:=		dev

include $(TOPDIR)/mk/package.mk

$(eval $(call PKG_template,GCONF,gconf,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))

CONFIGURE_ARGS+=	--with-gtk=2.0 \
			--disable-documentation

gconf-install:
	$(INSTALL_DIR) $(IDIR_GCONF)/usr/bin
	$(INSTALL_BIN) $(WRKINST)/usr/bin/* $(IDIR_GCONF)/usr/bin
	$(INSTALL_DIR) $(IDIR_GCONF)/usr/lib
	$(CP) $(WRKINST)/usr/lib/libgconf*.so* \
		$(IDIR_GCONF)/usr/lib
	$(INSTALL_DIR) $(IDIR_GCONF)/usr/lib/GConf/2
	$(CP) $(WRKINST)/usr/lib/GConf/2/*.so \
		$(IDIR_GCONF)/usr/lib/GConf/2
	$(INSTALL_DIR) $(IDIR_GCONF)/usr/libexec
	$(INSTALL_BIN) $(WRKINST)/usr/libexec/gconfd-2 \
		$(IDIR_GCONF)/usr/libexec
	$(INSTALL_DIR) $(IDIR_GCONF)/usr/share/dbus-1/services
	$(CP) $(WRKINST)/usr/share/dbus-1/services/* \
		$(IDIR_GCONF)/usr/share/dbus-1/services

include ${TOPDIR}/mk/pkg-bottom.mk