summaryrefslogtreecommitdiff
path: root/package/gconf
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2011-03-28 03:06:55 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2011-03-28 03:06:55 +0200
commit0c9fca670b86871f111e1cda82ac8f70605992be (patch)
treeb879cb81743c4bdf576bbcf69c494681a6e7b50f /package/gconf
parent6692b15f8bd7ffc742cce5b67b963b458f87f8b6 (diff)
add first step to get java working
Diffstat (limited to 'package/gconf')
-rw-r--r--package/gconf/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/package/gconf/Makefile b/package/gconf/Makefile
new file mode 100644
index 000000000..dd47682c2
--- /dev/null
+++ b/package/gconf/Makefile
@@ -0,0 +1,29 @@
+# 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:= 2.32.1
+PKG_EXTRAVER:= 2.32
+PKG_RELEASE:= 1
+PKG_MD5SUM:= de83e70453910ac62f9ee2a86444bdab
+PKG_DESCR:= a system for storing application preferences
+PKG_SECTION:= libs
+PKG_BUILDDEP:= dbus dbus-glib
+PKG_DEPENDS:= dbus dbus-glib
+PKG_URL:= http://projects.gnome.org/gconf/
+PKG_SITES:= ftp://ftp.gnome.org//pub/GNOME/sources/GConf/${PKG_EXTRAVER}/
+
+include $(TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,GCONF,gconf,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+gconf-install:
+ $(INSTALL_DIR) $(IDIR_GCONF)/usr/bin
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/* $(IDIR_GCONF)/usr/bin
+ $(INSTALL_DIR) $(IDIR_GCONF)/usr/lib
+ $(INSTALL_BIN) $(WRKINST)/usr/lib/libgconf*.so* \
+ $(IDIR_GCONF)/usr/lib
+
+include ${TOPDIR}/mk/pkg-bottom.mk