diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-16 23:38:13 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2003-01-16 23:38:13 +0000 |
commit | 9d3f1af935a76fd36b10eff4fc8f58343c4da1a4 (patch) | |
tree | b1b0421063ad345f371cdf7ba7b202db568e77e2 /graphics/epix/Makefile | |
parent | 10cc64275c0d8b225fb38f3adfdbf70b944c5c7d (diff) | |
download | ports-9d3f1af935a76fd36b10eff4fc8f58343c4da1a4.tar.gz ports-9d3f1af935a76fd36b10eff4fc8f58343c4da1a4.zip |
Notes
Diffstat (limited to 'graphics/epix/Makefile')
-rw-r--r-- | graphics/epix/Makefile | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/graphics/epix/Makefile b/graphics/epix/Makefile index f198ec4e62d1..476cdd9c42a0 100644 --- a/graphics/epix/Makefile +++ b/graphics/epix/Makefile @@ -7,7 +7,7 @@ # PORTNAME= epix -PORTVERSION= 0.8.7a +PORTVERSION= 0.8.8a CATEGORIES= graphics MASTER_SITES= http://mathcs.holycross.edu/~ahwang/software/ DISTNAME= ${PORTNAME}-${PORTVERSION}_src @@ -19,10 +19,21 @@ RUN_DEPENDS= bash:${PORTSDIR}/shells/bash2 \ latex:${PORTSDIR}/print/teTeX WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION} + +USE_BZIP2= yes +USE_REINPLACE= yes +MAKE_ARGS= CXX="${CXX}" CFLAGS="${CXXFLAGS} -c" \ + INSTALL_PROGRAM="${INSTALL_DATA}" \ + INSTALL_BIN="${INSTALL_SCRIPT}" PLIST_SUB= VERSION="${PORTVERSION}" MAN1= epix.1 +post-patch: + @${REINPLACE_CMD} -e \ + 's|%%LOCALBASE%%|${LOCALBASE}|g' ${WRKSRC}/newbash.sh + @${REINPLACE_CMD} -e 's|COPYING ||g' ${WRKSRC}/helpfiles.sh + pre-build: @(cd ${WRKSRC} ; ./newbash.sh) |