2011-01-04 19:50:07 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2011 David Kuehling <dvdkhlng TA gmx TOD de>
|
|
|
|
#
|
|
|
|
# License GPLv2 or later. NO WARRANTY.
|
|
|
|
#
|
|
|
|
# OpenWRT package for the libGII
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=libgii
|
|
|
|
PKG_VERSION:=1.0.2
|
|
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).src.tar.gz
|
|
|
|
PKG_SOURCE_URL:=@SF/ggi
|
|
|
|
PKG_MD5SUM:=205ca1d87042c8e4aafecd6da7c9de39
|
|
|
|
PKG_BUILD_DIR:=$(BUILD_DIR)/libgii-$(PKG_VERSION)
|
|
|
|
PKG_INSTALL:=1
|
|
|
|
PKG_FIXUP:=libtool
|
2011-03-08 17:00:02 +02:00
|
|
|
PKG_REMOVE_FILES:=aclocal.m4 acinclude.m4
|
2011-01-04 19:50:07 +02:00
|
|
|
|
2011-03-08 00:54:06 +02:00
|
|
|
PKG_BUILD_DEPENDS:=
|
2011-01-04 19:50:07 +02:00
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
|
|
|
define Package/libgii
|
|
|
|
SECTION:=libs
|
|
|
|
CATEGORY:=Libraries
|
|
|
|
TITLE:=GGI Project Input Interface Library
|
|
|
|
URL:=http://www.ggi-project.org/packages/libgii.html
|
|
|
|
DEPENDS:=
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgii/description
|
|
|
|
LibGII is intended to be to input what our LibGGI library is to graphics.
|
|
|
|
|
|
|
|
The goal of LibGII is to provide a single easy to use, but yet powerful, API
|
|
|
|
for all possible input sources. However we are not there yet. The API is far
|
|
|
|
from set in stone yet, and is likely to change.
|
|
|
|
endef
|
|
|
|
|
|
|
|
TARGET_CFLAGS +=
|
2011-01-04 20:56:33 +02:00
|
|
|
|
|
|
|
# fix for dependency between libgii and libgg. If not rpath configured
|
|
|
|
# linking with libgii and not libgg fails.
|
|
|
|
#TARGET_LDFLAGS += -Wl,-rpath -Wl,$(STAGING_DIR)/usr/lib
|
|
|
|
|
2011-01-04 19:50:07 +02:00
|
|
|
CONFIGURE_ARGS += \
|
|
|
|
--enable-mutexes=builtin \
|
2011-03-08 17:00:02 +02:00
|
|
|
--without-x
|
2011-01-04 19:50:07 +02:00
|
|
|
|
2011-01-19 05:30:14 +02:00
|
|
|
MAKE_FLAGS += X_CFLAGS=$(STAGING_DIR)/usr/include
|
|
|
|
|
2011-01-04 19:50:07 +02:00
|
|
|
define Build/Configure
|
|
|
|
$(call Build/Configure/Default)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
$(call Build/Compile/Default,-j2)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/InstallDev
|
|
|
|
$(INSTALL_DIR) $(1)/usr/include $(1)/usr/lib
|
|
|
|
$(CP) \
|
|
|
|
$(PKG_INSTALL_DIR)/usr/include/* \
|
|
|
|
$(1)/usr/include/
|
|
|
|
$(CP) \
|
2011-01-04 20:56:33 +02:00
|
|
|
$(PKG_INSTALL_DIR)/usr/lib/*.{la,a,so*} \
|
2011-01-04 19:50:07 +02:00
|
|
|
$(1)/usr/lib/
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/libgii/install
|
|
|
|
$(INSTALL_DIR) $(1)/usr/lib
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/*.so* $(1)/usr/lib/
|
2011-01-04 20:56:33 +02:00
|
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/ggi $(1)/usr/lib/
|
2011-01-04 19:50:07 +02:00
|
|
|
$(INSTALL_DIR) $(1)/etc/ggi
|
|
|
|
$(CP) $(PKG_INSTALL_DIR)/etc/ggi/* $(1)/etc/ggi/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,libgii))
|
|
|
|
|
|
|
|
|
|
|
|
# The following comments configure the Emacs editor. Just ignore them.
|
|
|
|
# Local Variables:
|
|
|
|
# compile-command: "make -C ~/h/src/qi/openwrt-xburst package/libgii/compile -j2 V=99"
|
|
|
|
# End:
|