diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-26 17:40:15 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2013-12-26 17:40:15 +0000 |
commit | d0549a1d10e7ea4101cb34d84f34951005ba6a5f (patch) | |
tree | 192682464b5b303737dc9730e551ea75bec82dc5 /audio | |
parent | 9087d86e1eb31157443e44a54334b99382d3e804 (diff) | |
download | ports-d0549a1d10e7ea4101cb34d84f34951005ba6a5f.tar.gz ports-d0549a1d10e7ea4101cb34d84f34951005ba6a5f.zip |
Support stage
Notes
Notes:
svn path=/head/; revision=337573
Diffstat (limited to 'audio')
-rw-r--r-- | audio/amp/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/audio/amp/Makefile b/audio/amp/Makefile index 38d986453545..08bb10204067 100644 --- a/audio/amp/Makefile +++ b/audio/amp/Makefile @@ -11,14 +11,13 @@ MAINTAINER= delphus@gmail.com COMMENT= Another mp3 player GNU_CONFIGURE= yes -NO_STAGE= yes USES= gmake -MAN1= amp.1 -PLIST_FILES= bin/amp +PLIST_FILES= bin/amp \ + man/man1/amp.1.gz do-install: - @ ${INSTALL_PROGRAM} ${WRKSRC}/amp ${PREFIX}/bin - @ ${INSTALL_MAN} ${WRKSRC}/amp.1 ${PREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/amp ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/amp.1 ${STAGEDIR}${PREFIX}/man/man1 .include <bsd.port.mk> |