add package for (lib)gconf2
git-svn-id: svn://svn.openwrt.org/openwrt/packages@16463 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
c568d82760
commit
e43f4ecc70
114
libs/gconf2/Makefile
Normal file
114
libs/gconf2/Makefile
Normal file
@ -0,0 +1,114 @@
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=gconf2
|
||||
PKG_VERSION:=2.24.0
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/GConf-$(PKG_VERSION)
|
||||
PKG_SOURCE:=GConf-$(PKG_VERSION).tar.bz2
|
||||
PKG_SOURCE_URL:=@GNOME/GConf/2.24
|
||||
PKG_FIXUP:=libtool
|
||||
|
||||
PKG_BUILD_DEPENDS:=orbit2/host
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
PKG_INSTALL=1
|
||||
|
||||
TARGET_CFLAGS+= \
|
||||
-I$(STAGING_DIR)/usr/lib/libintl/include \
|
||||
-I$(STAGING_DIR)/usr/libiconv/include
|
||||
|
||||
TARGET_LDFLAGS+= \
|
||||
-L$(STAGING_DIR)/usr/lib/libintl/lib \
|
||||
-L$(STAGING_DIR)/usr/lib/libiconv/lib
|
||||
|
||||
define Package/libgconf2
|
||||
SECTION:=lib
|
||||
CATEGORY:=Libraries
|
||||
TITLE:=GConf2 library
|
||||
URL:=http://www.gnome.org/projects/gconf/
|
||||
DEPENDS:=+orbit2 +glib2 +dbus +libdbus-glib +libxml2
|
||||
endef
|
||||
|
||||
define Package/libgconf2/description
|
||||
GConf is a configuration database system for storing application preferences.
|
||||
endef
|
||||
|
||||
define Package/gconf2
|
||||
SECTION:=utils
|
||||
CATEGORY:=Utilities
|
||||
TITLE:=GConf2 command line utils
|
||||
URL:=http://www.gnome.org/projects/gconf/
|
||||
DEPENDS:=+libgconf2
|
||||
endef
|
||||
|
||||
define Package/gconf2/description
|
||||
GConf is a configuration database system for storing application preferences.
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
$(call Build/Configure/Default, \
|
||||
--disable-gtk \
|
||||
)
|
||||
find $(PKG_BUILD_DIR) -name Makefile -exec sed -i 's,ORBIT_IDL.*orbit-idl-2,ORBIT_IDL = $(STAGING_DIR_HOST)/bin/orbit-idl-2,g' {} \; # tell gconf2 to use the host-built idl-compiler
|
||||
endef
|
||||
|
||||
define Build/InstallDev
|
||||
$(INSTALL_DIR) $(1)/usr/{include/gconf/2/gconf,lib/pkgconfig,share/aclocal}
|
||||
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/include/gconf/2/gconf/* \
|
||||
$(1)/usr/include/gconf/2/gconf/
|
||||
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/libgconf-2.{so*,la,a} \
|
||||
$(1)/usr/lib/
|
||||
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/pkgconfig/* \
|
||||
$(1)/usr/lib/pkgconfig/
|
||||
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/share/aclocal/* \
|
||||
$(1)/usr/share/aclocal/
|
||||
endef
|
||||
|
||||
define Package/libgconf2/install
|
||||
$(INSTALL_DIR) $(1)/etc/gconf
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/etc/gconf/* \
|
||||
$(1)/etc/gconf/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/lib
|
||||
$(CP) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/libgconf-2.so* \
|
||||
$(1)/usr/lib/
|
||||
|
||||
$(INSTALL_BIN) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/gconfd-2 \
|
||||
$(1)/usr/lib/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/lib/GConf/2
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/lib/GConf/2/libgconfbackend-xml.so \
|
||||
$(1)/usr/lib/GConf/2/
|
||||
|
||||
$(INSTALL_DIR) $(1)/usr/share/dbus-1/services
|
||||
$(INSTALL_DATA) \
|
||||
$(PKG_INSTALL_DIR)/usr/share/dbus-1/services/* \
|
||||
$(1)/usr/share/dbus-1/services/
|
||||
endef
|
||||
|
||||
define Package/gconf2/install
|
||||
$(INSTALL_DIR) $(1)/usr/bin
|
||||
$(INSTALL_BIN) \
|
||||
$(PKG_INSTALL_DIR)/usr/bin/* \
|
||||
$(1)/usr/bin/
|
||||
endef
|
||||
|
||||
$(eval $(call RequireCommand,intltool-update, \
|
||||
$(PKG_NAME) requires intltool >= 0.35.0 \
|
||||
))
|
||||
$(eval $(call BuildPackage,libgconf2))
|
||||
$(eval $(call BuildPackage,gconf2))
|
Loading…
x
Reference in New Issue
Block a user