Makefile 884 B

123456789101112131415161718192021222324252627282930313233
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include ${TOPDIR}/rules.mk
  4. PKG_NAME:= gtk+
  5. PKG_VERSION:= 2.18.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 8b34f75642ff6cc783dfa7e3af0ba443
  8. PKG_DESCR:= GTK+ library
  9. PKG_SECTION:= libs
  10. PKG_DEPENDS:= glib
  11. PKG_URL:= http://www.gtk.org/
  12. PKG_SITES:= http://ftp.gnome.org/pub/gnome/sources/gtk+/2.18/
  13. ifeq ($(ADK_STATIC),y)
  14. PKG_OPTS:= libonly
  15. endif
  16. include ${TOPDIR}/mk/package.mk
  17. $(eval $(call PKG_template,GTK,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
  18. CONFIGURE_STYLE:= gnu
  19. CONFIGURE_ENV+= gio_can_sniff=no
  20. CONFIGURE_ARGS+= --without-libtiff \
  21. --without-libjpeg
  22. BUILD_STYLE:= auto
  23. INSTALL_STYLE:= auto
  24. post-install:
  25. ${INSTALL_DIR} ${IDIR_GTK}/usr/lib
  26. include ${TOPDIR}/mk/pkg-bottom.mk