diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-22 19:29:20 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2013-10-22 19:29:20 +0200 |
commit | d279b5d1fe744cac44da7cd1b51f9ba6a2cc4647 (patch) | |
tree | bf575aca8f9ce9cf088ce3aee992fc846cd6e130 /package/gpm | |
parent | 32a82e38679501da738199135b35f93ddc8aca0a (diff) |
fix libmix packages, while checking all packages make some style cleanup
Diffstat (limited to 'package/gpm')
-rw-r--r-- | package/gpm/Makefile | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/package/gpm/Makefile b/package/gpm/Makefile index acfc3646d..e664facdd 100644 --- a/package/gpm/Makefile +++ b/package/gpm/Makefile @@ -5,21 +5,26 @@ include ${TOPDIR}/rules.mk PKG_NAME:= gpm PKG_VERSION:= 1.20.6 -PKG_RELEASE:= 1 +PKG_RELEASE:= 2 PKG_MD5SUM:= b75e794bfb9fe8114d0b083932673b8f PKG_DESCR:= console mouse support PKG_SECTION:= misc PKG_URL:= http://launchpad.net/gpm PKG_SITES:= http://launchpad.net/gpm/main/${PKG_VERSION}/+download/ PKG_NOPARALLEL:= 1 +PKG_OPTS:= dev + +ifeq ($(ADK_STATIC),y) +PKG_OPTS+= libmix +endif include ${TOPDIR}/mk/package.mk -$(eval $(call PKG_template,GPM,${PKG_NAME},${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,GPM,gpm,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION},${PKG_OPTS})) TARGET_CPPFLAGS+= -I${WRKSRC}/src/headers -post-install: +gpm-install: ${INSTALL_DIR} ${IDIR_GPM}/usr/sbin ${IDIR_GPM}/usr/lib ${INSTALL_BIN} ${WRKINST}/usr/sbin/gpm ${IDIR_GPM}/usr/sbin/ ${CP} ${WRKINST}/usr/lib/libgpm.so.* ${IDIR_GPM}/usr/lib/ |