summaryrefslogtreecommitdiff
path: root/devel/ilu/Makefile
diff options
context:
space:
mode:
authorMartin Cracauer <cracauer@FreeBSD.org>1997-10-01 08:12:54 +0000
committerMartin Cracauer <cracauer@FreeBSD.org>1997-10-01 08:12:54 +0000
commit9a362f39690758aaeff1bbf1313c9798ba4a44c7 (patch)
tree71ddfc027c8888af9bfbecc67add83463c0d75eb /devel/ilu/Makefile
parentActivate wdiff. (diff)
Xerox PARC's ILU system, a Corba-compatible multi-language
distributed object system. This port generates PLIST on-the-fly and messes with symlinks. I tested it to death and guessing from the silence people trust me to do it right, so here I go :-)
Notes
Notes: svn path=/head/; revision=8068
Diffstat (limited to 'devel/ilu/Makefile')
-rw-r--r--devel/ilu/Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/devel/ilu/Makefile b/devel/ilu/Makefile
new file mode 100644
index 000000000000..db6ea641be3e
--- /dev/null
+++ b/devel/ilu/Makefile
@@ -0,0 +1,51 @@
+# New ports collection makefile for: ilu
+# Version required: 2.0alpha11
+# Date created: 29.9.1997
+# Whom: cracauer@cons.org "Martin Cracauer"
+#
+# $Id: Makefile,v 1.7 1997/10/01 06:50:02 cracauer Exp $
+#
+
+DISTNAME= ilu-2.0alpha11
+CATEGORIES= devel
+MASTER_SITES= ftp://parcftp.xerox.com/pub/ilu/2.0a11/
+
+MAINTAINER= cracauer@cons.org
+
+NO_WRKSUBDIR= yes
+HAS_CONFIGURE= yes
+# ILU 2.0alpha11 doesn't compile with FreeBSD jdk-1.1 port
+CONFIGURE_ARGS= --disable-java-support --enable-http-protocol
+
+PKGDIR= var-pkg
+
+INSTALL_TARGET= Install
+NOMANCOMPRESS=
+
+post-install:
+ # Empty dirs
+ ${RMDIR} ${PREFIX}/ilu/man/man[358]
+ ${RMDIR} ${PREFIX}/ilu/lisp
+.if !exists(var-pkg)
+ ${MKDIR} var-pkg
+.endif
+ ${CP} pkg/COMMENT var-pkg/.
+ ${CP} pkg/DESCR var-pkg/.
+ (cd ${PREFIX} ; find ilu -type f) > var-pkg/PLIST
+ (cd ${PREFIX} ; find ilu -type d) | ${AWK} '{print "@dirrm " $$1}' \
+ | tail -r >> var-pkg/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 ; \
+ done) >> var-pkg/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 ; \
+ done) >> var-pkg/PLIST
+ # Empty dir, but we really need it
+ ${ECHO} @exec ${MKDIR} %D/ilu/lib/binding >> var-pkg/PLIST
+ ${ECHO} @exec chmod 777 %D/ilu/lib/binding >> var-pkg/PLIST
+
+.include <bsd.port.mk>