diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2011-02-24 17:41:36 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2011-02-24 17:41:36 +0100 |
commit | 0aabef127155575e8c8d660605f9401ab15356aa (patch) | |
tree | b8cd5f06c60cd4e95fd7a2923dabb3b831dd93b3 /package/imlib2 | |
parent | 0b09c2710166bd95ac9033b048bb6cbf7b4de7c2 (diff) |
allow native build of a lot of packages
STAGING_TARGET_DIR is used for package Makefile's for
include and library search path's. STAGING_DIR is used
for common code in mk/ or Makefile/rules.mk.
STAGING_TARGET_DIR is /usr when native builds are used.
Diffstat (limited to 'package/imlib2')
-rw-r--r-- | package/imlib2/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/package/imlib2/Makefile b/package/imlib2/Makefile index 0bf66f4a0..166d9cd40 100644 --- a/package/imlib2/Makefile +++ b/package/imlib2/Makefile @@ -9,8 +9,8 @@ PKG_RELEASE:= 1 PKG_MD5SUM:= 20d59c7cda06742015baade6f5975415 PKG_DESCR:= Version 2 of an advanced replacement library for libraries like libXpm PKG_SECTION:= libs -PKG_DEPENDS:= libfreetype -PKG_BUILDDEP:= freetype +PKG_DEPENDS:= libfreetype zlib libpng libtiff +PKG_BUILDDEP:= freetype zlib libpng libtiff PKG_URL:= http://www.enlightenment.org/ PKG_SITES:= ${MASTER_SITE_SOURCEFORGE:=enlightenment/} @@ -22,8 +22,8 @@ post-install: $(INSTALL_DIR) $(IDIR_IMLIB2)/usr/lib/imlib2/{filters,loaders} ${CP} $(WRKINST)/usr/lib/libImlib2.so* $(IDIR_IMLIB2)/usr/lib ${CP} $(WRKINST)/usr/lib/imlib2/filters/*.so \ - $(IDIR_IMLIB2)/usr/lib/imlib2/filters/ + $(IDIR_IMLIB2)/usr/lib/imlib2/filters ${CP} $(WRKINST)/usr/lib/imlib2/loaders/*.so \ - $(IDIR_IMLIB2)/usr/lib/imlib2/loaders/ + $(IDIR_IMLIB2)/usr/lib/imlib2/loaders include ${TOPDIR}/mk/pkg-bottom.mk |