diff options
author | lioux <lioux@FreeBSD.org> | 2001-01-08 00:54:30 +0000 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-01-08 00:54:30 +0000 |
commit | 51b5058ac6d5ee02451ec5941eecd4cd8f212fd6 (patch) | |
tree | f3f427ae17d9da9da07c76d11f4fc6c1ec467f2b /audio/lame/Makefile | |
parent | b752a4b6d838fa90de2d9ec40ac2249ebf8f869c (diff) | |
download | FreeBSD-ports-51b5058ac6d5ee02451ec5941eecd4cd8f212fd6.zip FreeBSD-ports-51b5058ac6d5ee02451ec5941eecd4cd8f212fd6.tar.gz |
1) Revert change supporting for shared library build/installation
due to uncertainty: there are too many unsharable global variables.
Pointed out by Alexander Leidinger.
2) Due the last, revert to previous state without static library
installation
3) Revert patch template to patch-aa revision 1.7
4) Unique change that is not reverse related: update MASTER_SITES
using MASTER_SITE_SOURCEFORGE (joseph@randomnetworks.com)
5) PORTREVISION bump.
I am reverting this for I won't be around to discuss this for the
time being. :)
If anyone wants to, please contact the submitter.
Submitted by: Alexander Leidinger <Alexander@leidinger.net>,
Joseph Scott <joseph@randomnetworks.com>
Diffstat (limited to 'audio/lame/Makefile')
-rw-r--r-- | audio/lame/Makefile | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/audio/lame/Makefile b/audio/lame/Makefile index c4970ed..a6437c6 100644 --- a/audio/lame/Makefile +++ b/audio/lame/Makefile @@ -7,21 +7,18 @@ PORTNAME= lame PORTVERSION= 3.70 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= audio -MASTER_SITES= http://lame.sourceforge.net/download/beta/ +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \ + ftp://lame.sourceforge.net/pub/ +MASTER_SITE_SUBDIR= lame/src DISTNAME= ${PORTNAME}${PORTVERSION} MAINTAINER= yoshiaki@kt.rim.or.jp -EXTRA_PATCHES= ${WRKDIR}/patch-lib_version USE_GMAKE= yes WANT_GTK= yes ALL_TARGET= lame -INSTALLS_SHLIB= yes -PLIST_SUB= LIB_VERSION="${LIB_VERSION}" - -LIB_VERSION= 1 MAN1= lame.1 @@ -31,15 +28,7 @@ MAN1= lame.1 USE_GTK= yes .endif -pre-patch: - @${SED} "s!%%LIB_VERSION%%!${LIB_VERSION}!g" \ - ${FILESDIR}/template-extra-patch-lib_version \ - > ${WRKDIR}/patch-lib_version - do-install: - @${INSTALL_DATA} ${WRKSRC}/libmp3lame.a ${PREFIX}/lib - @${INSTALL_DATA} ${WRKSRC}/libmp3lame.so.${LIB_VERSION} ${PREFIX}/lib - @${INSTALL_DATA} ${WRKSRC}/lame.h ${PREFIX}/include @${INSTALL_PROGRAM} ${WRKSRC}/lame ${PREFIX}/bin @${INSTALL_MAN} ${WRKSRC}/doc/man/lame.1 ${PREFIX}/man/man1 .if !defined(NOPORTDOCS) @@ -48,7 +37,4 @@ do-install: ${WRKSRC}/doc/html/*.css ${PREFIX}/share/doc/lame .endif -post-install: - @${LN} -sf libmp3lame.so.${LIB_VERSION} ${PREFIX}/lib/libmp3lame.so - .include <bsd.port.post.mk> |