diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-14 09:43:39 +0000 |
commit | 96bc8048c3217bb231f2f30eadeb628134b557f5 (patch) | |
tree | c75d5bd5a6faba5d6ec73da367e4bfe5b0d4285d /audio/x11amp | |
parent | 637c4e8f19438274164c0673ec85af739aba205b (diff) | |
download | ports-96bc8048c3217bb231f2f30eadeb628134b557f5.tar.gz ports-96bc8048c3217bb231f2f30eadeb628134b557f5.zip |
Use bsd.port.{pre,post}.mk to move PORTOBJFORMAT to front, or change
shell loops to make loops. Use EXTRA_PKG_FLAGS to add install scripts
instead of adding it to PKG_FLAGS after bsd.port.mk.
Notes
Notes:
svn path=/head/; revision=14512
Diffstat (limited to 'audio/x11amp')
-rw-r--r-- | audio/x11amp/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/audio/x11amp/Makefile b/audio/x11amp/Makefile index 591fe77fea45..aa97a31f084f 100644 --- a/audio/x11amp/Makefile +++ b/audio/x11amp/Makefile @@ -3,7 +3,7 @@ # Date created: 13 Jul 1998 # Whom: Donald Burr <dburr@FreeBSD.ORG> # -# $Id: Makefile,v 1.3 1998/08/05 09:30:44 asami Exp $ +# $Id: Makefile,v 1.4 1998/09/28 01:55:08 steve Exp $ # DISTNAME= x11amp-0.7-FreeBSD @@ -20,14 +20,16 @@ WRKSRC= ${WRKDIR}/x11amp USE_X_PREFIX= YES NO_BUILD= YES +.include <bsd.port.pre.mk> + +.if ${PORTOBJFORMAT} == "elf" +STRIP= +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/x11amp ${PREFIX}/bin/x11amp post-install: @${CAT} ${PKGDIR}/MESSAGE -.include <bsd.port.mk> - -.if ${PORTOBJFORMAT} == "elf" -STRIP= -.endif +.include <bsd.port.post.mk> |