diff options
author | jkh <jkh@FreeBSD.org> | 1994-10-20 01:55:54 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-10-20 01:55:54 +0000 |
commit | 91b57e7106b843b2456eb2ab46c1e02ac1bdb1f1 (patch) | |
tree | 9b5cedd6d03bc36f1dc4fc1845dc858532abea5b /www/chimera/scripts | |
parent | 76383c2b02637b3da123b34f6cb1f9deff4462b4 (diff) | |
download | FreeBSD-ports-91b57e7106b843b2456eb2ab46c1e02ac1bdb1f1.zip FreeBSD-ports-91b57e7106b843b2456eb2ab46c1e02ac1bdb1f1.tar.gz |
Chimera client from Jean-Marc Zucconi
Submitted by: jmz
Diffstat (limited to 'www/chimera/scripts')
-rw-r--r-- | www/chimera/scripts/configure | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/www/chimera/scripts/configure b/www/chimera/scripts/configure new file mode 100644 index 0000000..3791d59 --- /dev/null +++ b/www/chimera/scripts/configure @@ -0,0 +1,15 @@ +#!/bin/sh + +cd $WRKSRC || exit 1; + +cp options.h.dist options.h || exit 1; + +cp Common.tmpl.dist Common.tmpl || exit 1; +cat >>Common.tmpl<<EOF || exit 1; +CBINDIR = $PREFIX/bin +CUTILDIR = $PREFIX/lib/chimera +CLIBDIR = $PREFIX/lib +CMANDIR = $PREFIX/man/man1 +XAPPLOADDIR = $PREFIX/lib/chimera +EOF +exit 0; |