diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 21:37:01 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2009-12-04 21:37:01 +0100 |
commit | 9bacd09cc5280924908fc4bba494856bbe37c47f (patch) | |
tree | 7a6d58d0887eda74012b461389db21015062c459 /package/atk | |
parent | 6045422139a0dbbefaf508b1343f11535d6b104e (diff) |
some more additions for gtk+ library porting
Diffstat (limited to 'package/atk')
-rw-r--r-- | package/atk/Config.in | 5 | ||||
-rw-r--r-- | package/atk/Makefile | 31 |
2 files changed, 36 insertions, 0 deletions
diff --git a/package/atk/Config.in b/package/atk/Config.in new file mode 100644 index 000000000..bd1193fa7 --- /dev/null +++ b/package/atk/Config.in @@ -0,0 +1,5 @@ +config ADK_PACKAGE_ATK + prompt "atk............................... ATK library" + tristate + default n + help diff --git a/package/atk/Makefile b/package/atk/Makefile new file mode 100644 index 000000000..f7dd38010 --- /dev/null +++ b/package/atk/Makefile @@ -0,0 +1,31 @@ +# 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:= atk +PKG_VERSION:= 1.29.3 +PKG_RELEASE:= 1 +PKG_MD5SUM:= f587d9285b2d0ac35ea95acef673517c +PKG_DESCR:= atk library +PKG_SECTION:= libs +PKG_URL:= http://www.gnome.org +PKG_SITES:= ${MASTER_SITE_GNOME:=/atk/1.29/} + +ifeq ($(ADK_STATIC),y) +PKG_OPTS:= libonly +endif + +include ${TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,ATK,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) + +CONFIGURE_STYLE:= gnu +BUILD_STYLE:= auto +INSTALL_STYLE:= auto + +post-install: + ${INSTALL_DIR} ${IDIR_ATK}/usr/lib + ${CP} ${WRKINST}/usr/lib/libatk.so* ${IDIR_ATK}/usr/lib + +include ${TOPDIR}/mk/pkg-bottom.mk |