diff options
author | Martin Wilke <miwi@FreeBSD.org> | 2014-04-29 05:10:19 +0000 |
---|---|---|
committer | Martin Wilke <miwi@FreeBSD.org> | 2014-04-29 05:10:19 +0000 |
commit | 7141d578605c4453e93818aef6892fd7838b8c96 (patch) | |
tree | e28e5b0f83873dcd59d253bbf8c6962180c98022 | |
parent | - Update to 1.3.11 (diff) |
- Support CC/CFLAGS properly
PR: 187769
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=352572
-rw-r--r-- | audio/amp/Makefile | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/audio/amp/Makefile b/audio/amp/Makefile index bab3128377ad..4333ccace5af 100644 --- a/audio/amp/Makefile +++ b/audio/amp/Makefile @@ -10,18 +10,20 @@ MASTER_SITES= http://www-users.cs.umn.edu/~wburdick/ftp/ MAINTAINER= ports@FreeBSD.org COMMENT= Another mp3 player -GNU_CONFIGURE= yes USES= gmake +GNU_CONFIGURE= yes +CONFIGURE_ENV= ac_cv_prog_gcc=no -PLIST_FILES= bin/amp \ - man/man1/amp.1.gz +PLIST_FILES= bin/amp man/man1/amp.1.gz -post-configure: - @${REINPLACE_CMD} -e 's|-O6 -ffast-math -fomit-frame-pointer|${CFLAGS}|' \ - -e 's|gcc|${CC}|' ${WRKSRC}/Makefile +post-patch: + @${REINPLACE_CMD} -e \ + '/CC="gcc"/s|^|#| ; \ + /CFLAGS=$$/s|^|#| ; \ + s|-O6|$$CFLAGS|' ${WRKSRC}/configure do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/amp ${STAGEDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/amp.1 ${STAGEDIR}${PREFIX}/man/man1 + (cd ${WRKSRC} && ${INSTALL_PROGRAM} amp ${STAGEDIR}${PREFIX}/bin) + (cd ${WRKSRC} && ${INSTALL_MAN} amp.1 ${STAGEDIR}${PREFIX}/man/man1) .include <bsd.port.mk> |