summaryrefslogtreecommitdiff
path: root/package/libXpm
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:20:24 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2013-10-21 17:20:24 +0200
commit90d5c8b73e8d538e121275b12e714332ca785cff (patch)
treeb70121e4732d658097d1db00c8af381629ec82eb /package/libXpm
parent33dd541790614765228a71477e1f8b2b6aa21ce1 (diff)
automatically create development subpackages, without user interaction, depend on gcc for the target, simplifies a lot of library packages
Diffstat (limited to 'package/libXpm')
-rw-r--r--package/libXpm/Makefile17
1 files changed, 3 insertions, 14 deletions
diff --git a/package/libXpm/Makefile b/package/libXpm/Makefile
index c9ac44b9e..49cd98611 100644
--- a/package/libXpm/Makefile
+++ b/package/libXpm/Makefile
@@ -5,21 +5,17 @@ include $(TOPDIR)/rules.mk
PKG_NAME:= libXpm
PKG_VERSION:= 3.5.10
-PKG_RELEASE:= 1
+PKG_RELEASE:= 2
PKG_MD5SUM:= a70507638d74541bf30a771f1e5938bb
PKG_DESCR:= common operation for the XPM pixmap format
PKG_BUILDDEP:= libX11 libXt
PKG_SECTION:= x11/libs
PKG_SITES:= ${MASTER_SITE_XORG}
-
-PKG_SUBPKGS:= LIBXPM LIBXPM_DEV
-PKGSD_LIBXPM_DEV:= XPM pixmap format headers
-PKGSC_LIBXPM_DEV:= x11/devel
+PKG_OPTS:= dev
include $(TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,LIBXPM,libxpm,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
-$(eval $(call PKG_template,LIBXPM_DEV,libxpm-dev,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKGSD_LIBXPM_DEV},${PKGSC_LIBXPM_DEV}))
+$(eval $(call PKG_template,LIBXPM,libxpm,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS}))
CONFIGURE_ENV+= ac_cv_search_gettext=no
@@ -27,11 +23,4 @@ libxpm-install:
${INSTALL_DIR} ${IDIR_LIBXPM}/usr/lib
${CP} ${WRKINST}/usr/lib/libXpm.so* ${IDIR_LIBXPM}/usr/lib
-libxpm-dev-install:
- ${INSTALL_DIR} ${IDIR_LIBXPM_DEV}/usr/include
- ${CP} ${WRKINST}/usr/include/* ${IDIR_LIBXPM_DEV}/usr/include
- ${INSTALL_DIR} ${IDIR_LIBXPM_DEV}/usr/lib/pkgconfig
- ${INSTALL_DATA} ${WRKINST}/usr/lib/pkgconfig/*.pc \
- ${IDIR_LIBXPM_DEV}/usr/lib/pkgconfig
-
include ${TOPDIR}/mk/pkg-bottom.mk