summaryrefslogtreecommitdiff
path: root/package/freetype
diff options
context:
space:
mode:
Diffstat (limited to 'package/freetype')
-rw-r--r--package/freetype/Config.in24
-rw-r--r--package/freetype/Makefile22
2 files changed, 10 insertions, 36 deletions
diff --git a/package/freetype/Config.in b/package/freetype/Config.in
deleted file mode 100644
index 408998aa8..000000000
--- a/package/freetype/Config.in
+++ /dev/null
@@ -1,24 +0,0 @@
-config ADK_COMPILE_FREETYPE
- tristate
- default n
- depends on ADK_PACKAGE_LIBFREETYPE
-
-config ADK_PACKAGE_LIBFREETYPE
- tristate "libfreetype....................... A free, high-quality and portable font engine"
- default n
- select ADK_COMPILE_FREETYPE
- select ADK_PACKAGE_ZLIB
- help
- The FreeType project is a team of volunteers who develop free,
- portable and high-quality software solutions for digital typography.
- They specifically target embedded systems and focus on bringing small,
- efficient and ubiquitous products.
-
- The FreeType 2 library is their new software font engine. It has been
- designed to provide the following important features:
- * A universal and simple API to manage font files
- * Support for several font formats through loadable modules
- * High-quality anti-aliasing
- * High portability & performance
-
- http://www.freetype.org/
diff --git a/package/freetype/Makefile b/package/freetype/Makefile
index 81d18cb51..eab453ba6 100644
--- a/package/freetype/Makefile
+++ b/package/freetype/Makefile
@@ -3,29 +3,27 @@
include ${TOPDIR}/rules.mk
-PKG_NAME:= libfreetype
-PKG_VERSION:= 2.3.9
-PKG_RELEASE:= 1
-PKG_MD5SUM:= d76233108aca9c9606cdbd341562ad9a
+PKG_NAME:= freetype
+PKG_VERSION:= 2.3.11
+PKG_RELEASE:= 2
+PKG_MD5SUM:= a693c9a4b0121890ca71e39364ffea4a
PKG_DESCR:= A free, high-quality and portable font engine
PKG_SECTION:= libs
PKG_DEPENDS:= zlib
+PKG_BUILDDEP+= zlib
PKG_URL:= http://www.freetype.org
PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=freetype/}
-DISTFILES:= freetype-${PKG_VERSION}.tar.bz2
-WRKDIST= ${WRKDIR}/freetype-${PKG_VERSION}
+ifeq ($(ADK_STATIC),y)
+PKG_OPTS:= libonly
+endif
include ${TOPDIR}/mk/package.mk
-$(eval $(call PKG_template,LIBFREETYPE,libfreetype,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-
-CONFIGURE_STYLE= gnu
-BUILD_STYLE= auto
-INSTALL_STYLE= auto confprog
+$(eval $(call PKG_template,LIBFREETYPE,libfreetype,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
post-install:
${INSTALL_DIR} ${IDIR_LIBFREETYPE}/usr/lib
- ${CP} ${WRKINST}/usr/lib/libfreetype.so.* ${IDIR_LIBFREETYPE}/usr/lib/
+ ${CP} ${WRKINST}/usr/lib/libfreetype.so* ${IDIR_LIBFREETYPE}/usr/lib/
include ${TOPDIR}/mk/pkg-bottom.mk