| 12345678910111213141516171819202122232425262728293031323334 | # 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.mkPKG_NAME:=		gdPKG_VERSION:=		2.0.35PKG_RELEASE:=		1PKG_MD5SUM:=		982963448dc36f20cb79b6e9ba6fdedePKG_DESCR:=		A library for the dynamic creation of imagesPKG_SECTION:=		libsPKG_DEPENDS:=		libjpeg libpngPKG_URL:=		http://www.libgd.orgPKG_SITES:=		http://www.libgd.org/releases/include ${TOPDIR}/mk/package.mk$(eval $(call PKG_template,LIBGD,libgd,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_STYLE:=	autotool gnuCONFIGURE_ENV+=		LIBPNG12_CONFIG="${STAGING_DIR}/usr/bin/libpng12-config"CONFIGURE_ARGS+=	--without-x \			--without-freetype \			--with-jpeg=${STAGING_DIR}/usr \			--with-png=${STAGING_DIR}/usr \			--without-xpm BUILD_STYLE=		autoINSTALL_STYLE=		autopost-install:	${INSTALL_DIR} ${IDIR_LIBGD}/usr/lib	${CP} ${WRKINST}/usr/lib/libgd.so.* ${IDIR_LIBGD}/usr/lib/include ${TOPDIR}/mk/pkg-bottom.mk
 |