Bug 187769

Summary: audio/amp: Support CC/CFLAGS properly
Product: Ports & Packages Reporter: tkato432
Component: Individual Port(s)Assignee: Martin Wilke <miwi>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
file.diff
none
audio_amp.diff none

Description tkato432 2014-03-19 18:40:10 UTC
- Support CC/CFLAGS properly
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-03-19 18:40:36 UTC
Responsible Changed
From-To: freebsd-ports-bugs->miwi

miwi@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 tkato432 2014-03-26 17:58:35 UTC
Remake of the patch against current tree.
Comment 3 Martin Wilke freebsd_committer freebsd_triage 2014-04-29 06:10:13 UTC
State Changed
From-To: open->closed

Committed. Thanks!
Comment 4 dfilter service freebsd_committer freebsd_triage 2014-04-29 06:10:23 UTC
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@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>
_______________________________________________
svn-ports-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/svn-ports-all
To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"