diff options
author | mharo <mharo@FreeBSD.org> | 1999-12-24 18:39:48 +0000 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 1999-12-24 18:39:48 +0000 |
commit | 6732e58892144622578ef18a9ce32b3ae624f032 (patch) | |
tree | cffe8655b21fb7e485b88e43bce778b6a02fb9ed /misc | |
parent | a1aa7c31fe5eb626a0a93e1418b4a01dcef37e17 (diff) | |
download | FreeBSD-ports-6732e58892144622578ef18a9ce32b3ae624f032.zip FreeBSD-ports-6732e58892144622578ef18a9ce32b3ae624f032.tar.gz |
remove --prefix=${PREFIX} when GNU_CONFIGURE=yes and other minor cleanups
PR: 14759
Submitted by: Jeremy Lea <reg@shale.csir.co.za>
Diffstat (limited to 'misc')
-rw-r--r-- | misc/dotfile/Makefile | 10 | ||||
-rw-r--r-- | misc/rpm/Makefile | 2 |
2 files changed, 7 insertions, 5 deletions
diff --git a/misc/dotfile/Makefile b/misc/dotfile/Makefile index ff289a4..bbf11ed 100644 --- a/misc/dotfile/Makefile +++ b/misc/dotfile/Makefile @@ -20,16 +20,18 @@ MAN1= dotfile.1 NO_BUILD= yes -.if !defined(DISPLAY) -BROKEN= requires X display -.endif - post-configure: @(cd ${WRKSRC}/Modules/procmail && CC="${CC}" ac_cv_path_CC="${CC}" CFLAGS="${CFLAGS}" \ INSTALL="${INSTALL} -c -o ${BINOWN} -g ${BINGRP}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ ${CONFIGURE_ENV} ./${CONFIGURE_SCRIPT} ${CONFIGURE_ARGS}) +.if !defined(DISPLAY) +PLIST= ${WRKDIR}/PLIST +pre-install: + @${CAT} ${PKGDIR}/PLIST | ${SED} -e '/fvwm.\/bytecompile/d' > ${PLIST} +.endif + post-install: @${MKDIR} ${PREFIX}/share/doc/${DISTNAME} @${MKDIR} ${PREFIX}/share/doc/${DISTNAME}/dotfile diff --git a/misc/rpm/Makefile b/misc/rpm/Makefile index 84f05d5..52f878a 100644 --- a/misc/rpm/Makefile +++ b/misc/rpm/Makefile @@ -12,7 +12,7 @@ MASTER_SITES= ftp://ftp.rpm.org/pub/rpm/dist/rpm-2.5.x/ MAINTAINER= ports@FreeBSD.org -BUILD_DEPENDS= ${PREFIX}/lib/libgdbm.a:${PORTSDIR}/databases/gdbm +LIB_DEPENDS= gdbm.2:${PORTSDIR}/databases/gdbm USE_GMAKE= yes USE_AUTOCONF= yes |