diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-06-02 00:39:14 +0000 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2009-06-02 00:39:14 +0000 |
commit | a5a7503584443b8df297b2faa51403fd8f5a9787 (patch) | |
tree | 81b343f729c7bb84cd3fe18032436d77408243d1 | |
parent | 04e5f3fd2c3734f00b86bfe56984517ee4de4788 (diff) | |
download | ports-a5a7503584443b8df297b2faa51403fd8f5a9787.tar.gz ports-a5a7503584443b8df297b2faa51403fd8f5a9787.zip |
- Respect LOCALBASE
Reported by: QATty
Notes
Notes:
svn path=/head/; revision=235002
-rw-r--r-- | audio/flac123/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/audio/flac123/Makefile b/audio/flac123/Makefile index 5388104bdcc2..dcfd9a8c2f6b 100644 --- a/audio/flac123/Makefile +++ b/audio/flac123/Makefile @@ -7,7 +7,7 @@ PORTNAME= flac123 PORTVERSION= 0.0.11 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio MASTER_SITES= SF/flac-tools @@ -24,6 +24,10 @@ GNU_CONFIGURE= yes PORTDOCS= README.remote PLIST_FILES= bin/flac123 +post-patch: + @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|' \ + ${WRKSRC}/configure + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |