svn commit: r352572 - head/audio/amp
Martin Wilke
miwi at FreeBSD.org
Tue Apr 29 05:10:20 UTC 2014
Author: miwi
Date: Tue Apr 29 05:10:19 2014
New Revision: 352572
URL: http://svnweb.freebsd.org/changeset/ports/352572
QAT: https://qat.redports.org/buildarchive/r352572/
Log:
- Support CC/CFLAGS properly
PR: 187769
Submitted by: Ports Fury
Modified:
head/audio/amp/Makefile
Modified: head/audio/amp/Makefile
==============================================================================
--- head/audio/amp/Makefile Tue Apr 29 05:09:40 2014 (r352571)
+++ head/audio/amp/Makefile Tue Apr 29 05:10:19 2014 (r352572)
@@ -10,18 +10,20 @@ MASTER_SITES= http://www-users.cs.umn.ed
MAINTAINER= ports at 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>
More information about the svn-ports-all
mailing list