Bug 185565

Summary: [PATCH] audio/lame: fix StageDir
Product: Ports & Packages Reporter: takefu
Component: Individual Port(s)Assignee: Alexander Leidinger <netchild>
Status: Closed FIXED    
Severity: Affects Only Me CC: netchild
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
lame-3.99.5_1.patch none

Description takefu 2014-01-08 00:30:00 UTC
fix StageDir

Port maintainer (netchild@FreeBSD.org) is cc'd.

Generated with FreeBSD Port Tools 0.99_11 (mode: change, diff: ports)
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-01-08 00:30:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->netchild

Over to maintainer (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-01-17 21:41:19 UTC
Author: netchild
Date: Fri Jan 17 21:41:12 2014
New Revision: 340118
URL: http://svnweb.freebsd.org/changeset/ports/340118
QAT: https://qat.redports.org/buildarchive/r340118/

Log:
  support stagedir
  
  PR:		185565
  Submitted by:	Takefu <takefu@airport.fm>

Modified:
  head/audio/lame/Makefile
  head/audio/lame/pkg-plist

Modified: head/audio/lame/Makefile
==============================================================================
--- head/audio/lame/Makefile	Fri Jan 17 21:38:50 2014	(r340117)
+++ head/audio/lame/Makefile	Fri Jan 17 21:41:12 2014	(r340118)
@@ -11,16 +11,14 @@ MAINTAINER=	netchild@FreeBSD.org
 COMMENT=	Fast MP3 encoder kit
 
 USES=		gmake iconv
-NO_STAGE=	yes
 USE_AUTOTOOLS=	libtool
 USE_LDCONFIG=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--enable-nasm --enable-mp3rtp --disable-gtktest
+CONFIGURE_ARGS_PREFIX=	${STAGEDIR}${PREFIX}
 
 RESTRICTED=	patent issues, see http://www.mp3licensing.com/
 
-MAN1=		lame.1
-
 DOC_FILES=	API LICENSE README TODO USAGE
 
 .include <bsd.port.pre.mk>
@@ -46,9 +44,9 @@ do-install:
 post-install: install-doc
 
 install-doc:
-	@${MKDIR} ${DOCSDIR}
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 .for file in ${DOC_FILES}
-	@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
+	@${INSTALL_DATA} ${WRKSRC}/${file} ${STAGEDIR}${DOCSDIR}
 .endfor
 .endif
 

Modified: head/audio/lame/pkg-plist
==============================================================================
--- head/audio/lame/pkg-plist	Fri Jan 17 21:38:50 2014	(r340117)
+++ head/audio/lame/pkg-plist	Fri Jan 17 21:41:12 2014	(r340118)
@@ -1,5 +1,6 @@
 bin/lame
 bin/mp3rtp
+man/man1/lame.1.gz
 include/lame/lame.h
 lib/libmp3lame.a
 lib/libmp3lame.la
_______________________________________________
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"
Comment 3 Alexander Leidinger freebsd_committer freebsd_triage 2014-01-17 21:41:59 UTC
State Changed
From-To: open->closed

Committed, thanks!