diff options
author | Michael Haro <mharo@FreeBSD.org> | 1999-12-24 18:39:48 +0000 |
---|---|---|
committer | Michael Haro <mharo@FreeBSD.org> | 1999-12-24 18:39:48 +0000 |
commit | 332b0f4a830f7403e0b41592bbae6e4094f8ef23 (patch) | |
tree | 9aa86e9c08a6d45d9cb6cc1ab3b1b095d54bc7ec /misc/dotfile | |
parent | 9740f4f2a2937848763617cab19467f5846aaceb (diff) | |
download | ports-332b0f4a830f7403e0b41592bbae6e4094f8ef23.tar.gz ports-332b0f4a830f7403e0b41592bbae6e4094f8ef23.zip |
remove --prefix=${PREFIX} when GNU_CONFIGURE=yes and other minor cleanups
PR: 14759
Submitted by: Jeremy Lea <reg@shale.csir.co.za>
Notes
Notes:
svn path=/head/; revision=23999
Diffstat (limited to 'misc/dotfile')
-rw-r--r-- | misc/dotfile/Makefile | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/misc/dotfile/Makefile b/misc/dotfile/Makefile index ff289a4928da..bbf11edc0221 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 |