diff options
author | hoek <hoek@FreeBSD.org> | 1998-08-20 09:47:16 +0000 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 1998-08-20 09:47:16 +0000 |
commit | b2240e09de5b6cf48737bf5e48d817000ff9e1d0 (patch) | |
tree | 7274176be634cfc4fa544cc959d34410ea63ad34 /devel/ilu | |
parent | 41e6267bcd8d3b06021925c37fcf03125b5527cb (diff) | |
download | FreeBSD-ports-b2240e09de5b6cf48737bf5e48d817000ff9e1d0.zip FreeBSD-ports-b2240e09de5b6cf48737bf5e48d817000ff9e1d0.tar.gz |
GNU_CONFIGURE, actually. I really hope the maintainer has
a good reason for building the plist this way. Unbreak for
the new bsd.port.mk. We're not even going to talk about manpages
for this one...
Diffstat (limited to 'devel/ilu')
-rw-r--r-- | devel/ilu/Makefile | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/devel/ilu/Makefile b/devel/ilu/Makefile index 690eca8..ea3d4ef 100644 --- a/devel/ilu/Makefile +++ b/devel/ilu/Makefile @@ -3,32 +3,34 @@ # Date created: 29.9.1997 # Whom: cracauer@cons.org "Martin Cracauer" # -# $Id: Makefile,v 1.6 1997/10/09 21:19:41 cracauer Exp $ +# $Id: Makefile,v 1.7 1997/12/17 09:43:09 cracauer Exp $ # -DISTNAME= ilu-2.0alpha12 +DISTNAME= ilu-2.0alpha12 PKGNAME= ilu-2.0a12 -CATEGORIES= devel -MASTER_SITES= ftp://parcftp.xerox.com/pub/ilu/2.0a12/ +CATEGORIES= devel +MASTER_SITES= ftp://parcftp.xerox.com/pub/ilu/2.0a12/ MAINTAINER= cracauer@cons.org NO_PACKAGE= Doesn't work with optimization enabled -NO_WRKSUBDIR= yes -HAS_CONFIGURE= yes - # The official guile port is outdated. If you have 1.2 installed, remove # --disable-guile-support -CONFIGURE_ARGS= --disable-guile-support --enable-http-protocol +CONFIGURE_ARGS= --disable-guile-support --enable-http-protocol + +NO_WRKSUBDIR= yes +HAS_CONFIGURE= yes +# Actually GNU_CONFIGURE +CONFIGURE_ARGS+= --prefix=${PREFIX}/ilu INSTALL_TARGET= Install -NOMANCOMPRESS= PLIST= ${WRKSRC}/PLIST +TMPPLIST= ${PLIST} # Startup script, run at boot time -startup_dir= ${PREFIX}/etc/rc.d -startup_script= ${startup_dir}/50.ilu.sh +startup_dir= ${PREFIX}/etc/rc.d +startup_script= ${startup_dir}/50.ilu.sh post-install: # Empty dir, but we really need it @@ -39,21 +41,17 @@ post-install: # Empty dirs we don't need ${RMDIR} ${PREFIX}/ilu/man/man[358] ${RMDIR} ${PREFIX}/ilu/lisp - # this one doesn't always exist, hence the || true - # .if exists(${PREFIX} ... doesn't work for me - ${RMDIR} ${PREFIX}/ilu/examples/javatest1/javastubs || true + -${RMDIR} ${PREFIX}/ilu/examples/javatest1/javastubs (cd ${PREFIX} ; find ilu -type f) >> ${PLIST} (cd ${PREFIX} ; find ilu -type d) | ${AWK} '{print "@dirrm " $$1}' \ | tail -r | ${GREP} -v lib/binding >> ${PLIST} (cd ${PREFIX}/ilu/bin ; for file in * ; do \ ln -fs ${PREFIX}/ilu/bin/$$file ${PREFIX}/bin/. ; \ - ${ECHO} @exec ln -fs %D/ilu/bin/$$file %D/bin/. ; \ - ${ECHO} @unexec ${RM} %D/bin/$$file ; \ + ${ECHO} ${PREFIX}/ilu/bin/$$file ; \ done) >> ${PLIST} (cd ${PREFIX}/ilu/man/man1 ; for file in * ; do \ ln -fs ${PREFIX}/ilu/man/man1/$$file ${PREFIX}/man/man1/. ; \ - ${ECHO} @exec ln -fs %D/ilu/man/man1/$$file %D/man/man1/. ; \ - ${ECHO} @unexec ${RM} %D/man/man1/$$file ; \ + ${ECHO} ${PREFIX}/ilu/man/man1/$$file ; \ done) >> ${PLIST} ${ECHO} etc/rc.d/50.ilu.sh >> ${PLIST} ${ECHO} "Installing ${startup_script} file" |