diff options
author | Chris D. Faulhaber <jedgar@FreeBSD.org> | 1999-12-29 02:50:42 +0000 |
---|---|---|
committer | Chris D. Faulhaber <jedgar@FreeBSD.org> | 1999-12-29 02:50:42 +0000 |
commit | 01810979374ec96f2d0258518e4af0269194bc99 (patch) | |
tree | 2f52b170574d81e54f2605c06f2d546921725bc2 /archivers/makeself/Makefile | |
parent | 8842892974cb6d7dba94dc7d51b1e3f8cd9d225f (diff) |
Update port to 1.5.3
PR: 15755
Submitted by: Maintainer
Notes
Notes:
svn path=/head/; revision=24214
Diffstat (limited to 'archivers/makeself/Makefile')
-rw-r--r-- | archivers/makeself/Makefile | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/archivers/makeself/Makefile b/archivers/makeself/Makefile index fb399702fbc0..0c16d0cdb0bf 100644 --- a/archivers/makeself/Makefile +++ b/archivers/makeself/Makefile @@ -1,5 +1,5 @@ # New ports collection makefile for: makeself -# Version required: 1.4 +# Version required: 1.5.3 # Date created: 22 Oct 1999 # Whom: Will Andrews <andrews@technologist.com> # @@ -7,7 +7,7 @@ # DISTNAME= makeself -PKGNAME= makeself-1.4 +PKGNAME= makeself-1.5.3 CATEGORIES= archivers MASTER_SITES= http://www.lokigames.com/~megastep/makeself/ EXTRACT_SUFX= .gz.sh @@ -18,8 +18,14 @@ EXTRACT_CMD= ${CP} EXTRACT_BEFORE_ARGS= EXTRACT_AFTER_ARGS= ${WRKDIR} NO_BUILD= yes +WRKSRC= ${WRKDIR}/${PKGNAME} + +# The DISPLAY thing is to prevent the script from trying to launch a xterm +# just to extract the source. +pre-patch: + (cd ${WRKDIR} && ${SETENV} DISPLAY="" ${SH} ${DISTNAME}${EXTRACT_SUFX}) do-install: - ${INSTALL_SCRIPT} ${WRKDIR}/makeself.gz.sh ${PREFIX}/bin/makeself + @${INSTALL_SCRIPT} ${WRKSRC}/makeself.sh ${PREFIX}/bin/makeself .include <bsd.port.mk> |