diff options
author | jlam <jlam> | 2006-03-20 18:15:37 +0000 |
---|---|---|
committer | jlam <jlam> | 2006-03-20 18:15:37 +0000 |
commit | ba56a6d962bf14bb906ae2ad6fbe36b11088e35f (patch) | |
tree | 0f05903ff61fcd859ec72aa544fa1e5eda653bf6 /devel/opencm/Makefile | |
parent | cd12b581e049b51b7dda38fa3ff87b479c78aec2 (diff) | |
download | pkgsrc-ba56a6d962bf14bb906ae2ad6fbe36b11088e35f.tar.gz |
* Nuke all references to and definitions of INFO_DIR in package Makefiles
and replace with appropriate references to PKGINFODIR instead.
* Properly account for split info files during installation.
* Move info file listings directly into the package PLISTs.
This fixes info-file-related PLIST problems.
Diffstat (limited to 'devel/opencm/Makefile')
-rw-r--r-- | devel/opencm/Makefile | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/devel/opencm/Makefile b/devel/opencm/Makefile index 5f21f16cb73..67bc60e6c3e 100644 --- a/devel/opencm/Makefile +++ b/devel/opencm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2006/03/05 16:27:25 jlam Exp $ +# $NetBSD: Makefile,v 1.40 2006/03/20 18:15:38 jlam Exp $ # DISTNAME= ${OPENCM_VERSION}-2-src @@ -15,7 +15,6 @@ COMMENT= Secure, high-integrity replacement for CVS WRKSRC= ${WRKDIR}/${OPENCM_VERSION}/base USE_TOOLS+= gmake gzip makeinfo GNU_CONFIGURE= YES -CONFIGURE_ARGS+= --infodir=${PREFIX}/${INFO_DIR} CONFIGURE_ARGS+= --with-ssl-dir=${BUILDLINK_PREFIX.openssl} OPENCM_VERSION= opencm-0.1.2alpha8 @@ -23,13 +22,13 @@ OPENCM_VERSION= opencm-0.1.2alpha8 CONF_FILES= ${PREFIX}/share/examples/opencm/opencm.conf \ ${PKG_SYSCONFDIR}/opencm.conf -INFO_FILES= opencm.info +INFO_FILES= # PLIST CPPFLAGS+= -D__unix__ MAKE_ENV+= GZIP_CMD=${GZIP_CMD:Q} post-install: - gzip -d ${PREFIX}/info/opencm.info.gz + gzip -d ${PREFIX}/${PKGINFODIR}/opencm.info.gz .include "../../devel/boehm-gc/buildlink3.mk" .include "../../devel/ncurses/buildlink3.mk" |