mirror of
git://projects.qi-hardware.com/openwrt-packages.git
synced 2024-11-22 22:17:30 +02:00
those package already in Lars' openwrt-gnome-packages.git
This commit is contained in:
parent
943ea874b8
commit
de2aa71a65
@ -1,58 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2009 Qi Hardware Inc.
|
|
||||||
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
|
||||||
|
|
||||||
PKG_NAME:=libbonobo
|
|
||||||
PKG_VERSION:=2.24.2
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/libbonobo/2.24/
|
|
||||||
PKG_INSTALL:=1
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
|
||||||
|
|
||||||
define Package/libbonobo
|
|
||||||
TITLE:=libbonobo
|
|
||||||
SECTION:=libs
|
|
||||||
CATEGORY:=Libraries
|
|
||||||
DEPENDS:=+libintl +libpopt
|
|
||||||
URL:=
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libbonobo/description
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/lib/libintl/include
|
|
||||||
|
|
||||||
TARGET_LDFLAGS+= \
|
|
||||||
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
|
||||||
-L$(STAGING_DIR)/usr/lib/libintl/lib
|
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/include \
|
|
||||||
$(1)/usr/lib
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
||||||
$(1)/usr/include/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libbonobo/install
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libbonobo*.so* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libbonobo))
|
|
@ -1,62 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2009 Qi Hardware Inc.
|
|
||||||
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
|
||||||
|
|
||||||
PKG_NAME:=libbonoboui
|
|
||||||
PKG_VERSION:=2.24.2
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/libbonoboui/2.24/
|
|
||||||
PKG_INSTALL:=1
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
|
||||||
|
|
||||||
define Package/libbonoboui
|
|
||||||
TITLE:=libbonoboui
|
|
||||||
SECTION:=libs
|
|
||||||
CATEGORY:=Libraries
|
|
||||||
DEPENDS:=+libpopt +libgnomecanvas +libbonobo +libgnome +bonobo-activation
|
|
||||||
URL:=
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libbonoboui/description
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
TARGET_CFLAGS+=
|
|
||||||
|
|
||||||
define Build/Configure
|
|
||||||
$(call Build/Configure/Default,)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/include \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(1)/usr/lib/libbonoboui
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
||||||
$(1)/usr/include/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libbonoboui \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libbonoboui/install
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libbonoboui*so.* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libbonoboui))
|
|
@ -1,70 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2009 Qi Hardware Inc.
|
|
||||||
# Author: Xiangfu Liu <xiangfu@qi-hardware.com>
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
|
||||||
|
|
||||||
PKG_NAME:=libgnome
|
|
||||||
PKG_VERSION:=2.28.0
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
||||||
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/libgnome/2.28/
|
|
||||||
PKG_INSTALL:=1
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
|
||||||
|
|
||||||
define Package/libgnome
|
|
||||||
TITLE:=libgnome
|
|
||||||
SECTION:=libs
|
|
||||||
CATEGORY:=Libraries
|
|
||||||
DEPENDS:=+libbonobo +libgnome-vfs
|
|
||||||
URL:=
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libgnome/description
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
TARGET_CFLAGS+=-I$(STAGING_DIR)/usr/lib/libintl/include \
|
|
||||||
-I$(STAGING_DIR)/usr/lib/gnome-vfs-2.0/include
|
|
||||||
|
|
||||||
TARGET_LDFLAGS+= \
|
|
||||||
-Wl,-rpath-link=$(STAGING_DIR)/usr/lib \
|
|
||||||
-L$(STAGING_DIR)/usr/lib/libintl/lib \
|
|
||||||
-L$(STAGING_DIR)/usr/lib/gnome-vfs-2.0/modules
|
|
||||||
|
|
||||||
CONFIGURE_ARGS += --disable-esd
|
|
||||||
|
|
||||||
define Build/Configure
|
|
||||||
$(call Build/Configure/Default,)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/include \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(1)/usr/lib/libgnome
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
||||||
$(1)/usr/include/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libgnome \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libgnome/install
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libgnome*.so* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libgnome))
|
|
@ -1,61 +0,0 @@
|
|||||||
#
|
|
||||||
# Copyright (C) 2008 OpenWrt.org
|
|
||||||
#
|
|
||||||
# This is free software, licensed under the GNU General Public License v2.
|
|
||||||
# See /LICENSE for more information.
|
|
||||||
#
|
|
||||||
|
|
||||||
include $(TOPDIR)/rules.mk
|
|
||||||
|
|
||||||
PKG_NAME:=libgnomeui
|
|
||||||
PKG_VERSION:=2.0.6
|
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
|
||||||
PKG_SOURCE_URL:=http://ftp.gnome.org/pub/GNOME/sources/libgnomeui/2.0/
|
|
||||||
PKG_INSTALL:=1
|
|
||||||
|
|
||||||
include $(INCLUDE_DIR)/package.mk
|
|
||||||
|
|
||||||
define Package/libgnomeui
|
|
||||||
TITLE:=libgnomeui
|
|
||||||
SECTION:=libs
|
|
||||||
CATEGORY:=Libraries
|
|
||||||
DEPENDS:=+gconf2 +libgnome +libgnomecanvas +libbonoboui
|
|
||||||
URL:=
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libgnomeui/description
|
|
||||||
|
|
||||||
endef
|
|
||||||
|
|
||||||
TARGET_CFLAGS+=
|
|
||||||
|
|
||||||
define Build/Configure
|
|
||||||
$(call Build/Configure/Default,)
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Build/InstallDev
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/include \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(1)/usr/lib/pklibgnomeuionfig
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
||||||
$(1)/usr/include/
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/pklibgnomeuionfig \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
define Package/libgnomeui/install
|
|
||||||
$(INSTALL_DIR) \
|
|
||||||
$(1)/usr/lib \
|
|
||||||
$(CP) \
|
|
||||||
$(PKG_INSTALL_DIR)/usr/lib/libgnomeui*.so* \
|
|
||||||
$(1)/usr/lib/
|
|
||||||
endef
|
|
||||||
|
|
||||||
$(eval $(call BuildPackage,libgnomeui))
|
|
Loading…
Reference in New Issue
Block a user