diff options
author | ade <ade@FreeBSD.org> | 2003-06-26 22:58:32 +0000 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2003-06-26 22:58:32 +0000 |
commit | 9487d820b3247d8654d99544f8144188dcec810a (patch) | |
tree | 740462af7ed8e371913ea7f6b12533a99dd524ac /audio | |
parent | dfe03c1be7cf9f1612091e1e697a7e74f7002416 (diff) | |
download | FreeBSD-ports-9487d820b3247d8654d99544f8144188dcec810a.zip FreeBSD-ports-9487d820b3247d8654d99544f8144188dcec810a.tar.gz |
libtool uber-patch
* kill devel/libtool and move to devel/libtool13, upgrading to 1.3.5
* upgrade repo-copied devel/libtool14 to 1.4.3
* break out libltdl into its own separate port
* move to version-numbered binaries/scripts (ie: there is *no* 'libtool'
any more -- USE_LIBTOOL and USE_LIBTOOL_VER are your friends)
Approved by: portmgr (kris) - for the bsd.port.mk hooks
Tested by: bento 4-exp builds (repeatedly)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/faad/Makefile | 6 | ||||
-rw-r--r-- | audio/glame/Makefile | 2 | ||||
-rw-r--r-- | audio/liba52-devel/Makefile | 2 | ||||
-rw-r--r-- | audio/liba52/Makefile | 2 | ||||
-rw-r--r-- | audio/libshout2/Makefile | 6 |
5 files changed, 12 insertions, 6 deletions
diff --git a/audio/faad/Makefile b/audio/faad/Makefile index 5cc46ba..7c0844d 100644 --- a/audio/faad/Makefile +++ b/audio/faad/Makefile @@ -38,8 +38,8 @@ pre-patch: build-depends post-patch: # make sure everything is prepared prior to configure stage # pre-configure will not work since *AUTO* tools happen in-between - @cd ${WRKSRC}; ${ACLOCAL} -I ${ACLOCAL_DIR} -I .; libtoolize \ - --automake + @cd ${WRKSRC}; ${ACLOCAL} -I ${ACLOCAL_DIR} -I .; \ + ${SETENV} ${SCRIPTS_ENV} ${LIBTOOLIZE} --automake # CFLAGS safeness @${FIND} ${WRKSRC} -type f -name Makefile.am | \ ${XARGS} -n 5 -x \ @@ -48,7 +48,7 @@ post-patch: post-configure: # sync the multiple libtool copies - @${CP} ${WRKSRC}/${LIBTOOL} ${WRKSRC}/common/mp4v2/ + @${CP} ${WRKSRC}/libtool ${WRKSRC}/common/mp4v2/ .include <bsd.port.pre.mk> diff --git a/audio/glame/Makefile b/audio/glame/Makefile index 511aaf0..6be7061 100644 --- a/audio/glame/Makefile +++ b/audio/glame/Makefile @@ -14,7 +14,7 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= sobomax@FreeBSD.org COMMENT= A powerful, fast, stable, and easily extensible sound editor for GNOME -LIB_DEPENDS= ltdl.1:${PORTSDIR}/devel/libtool +LIB_DEPENDS= ltdl.4:${PORTSDIR}/devel/libltdl USE_GNOME= gnomeprefix gnomehack libglade USE_X_PREFIX= yes diff --git a/audio/liba52-devel/Makefile b/audio/liba52-devel/Makefile index d36a923..72f5647 100644 --- a/audio/liba52-devel/Makefile +++ b/audio/liba52-devel/Makefile @@ -58,7 +58,7 @@ post-patch: .endif post-configure: - @${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC} + @${LN} -sf ${LIBTOOL} ${WRKSRC}/libtool post-install: .ifndef(NOPORTDOCS) diff --git a/audio/liba52/Makefile b/audio/liba52/Makefile index d36a923..72f5647 100644 --- a/audio/liba52/Makefile +++ b/audio/liba52/Makefile @@ -58,7 +58,7 @@ post-patch: .endif post-configure: - @${LN} -sf ${LOCALBASE}/bin/libtool ${WRKSRC} + @${LN} -sf ${LIBTOOL} ${WRKSRC}/libtool post-install: .ifndef(NOPORTDOCS) diff --git a/audio/libshout2/Makefile b/audio/libshout2/Makefile index c0f26c3..11c5531 100644 --- a/audio/libshout2/Makefile +++ b/audio/libshout2/Makefile @@ -29,6 +29,12 @@ USE_REINPLACE= yes WRKSRC= ${WRKDIR}/libshout +# Idiot packagers +pre-configure: +.for file in config.guess config.sub ltmain.sh + ${LN} -sf ${LIBTOOL_SHAREDIR}/${file} ${WRKSRC} +.endfor + post-configure: @${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|'\ ${WRKSRC}/examples/Makefile |