diff options
author | Ade Lovett <ade@FreeBSD.org> | 2010-09-15 18:35:24 +0000 |
---|---|---|
committer | Ade Lovett <ade@FreeBSD.org> | 2010-09-15 18:35:24 +0000 |
commit | 8262a7b51d413e11ef8f67c56e862ebbc6f182de (patch) | |
tree | 1e9812bc2638933184cae2b226809eb69253bb9f /devel/libtool24/Makefile | |
parent | Mark DEPRECATED: abandoned upstream. (diff) |
Autotools update. Read ports/UPDATING 20100915 for details.
Approved by: portmgr (for Mk/bsd.port.mk part)
Tested by: Multiple -exp runs
Notes
Notes:
svn path=/head/; revision=261230
Diffstat (limited to 'devel/libtool24/Makefile')
-rw-r--r-- | devel/libtool24/Makefile | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/devel/libtool24/Makefile b/devel/libtool24/Makefile index 6bc23f393c68..949e0de17534 100644 --- a/devel/libtool24/Makefile +++ b/devel/libtool24/Makefile @@ -6,24 +6,32 @@ # PORTNAME?= libtool -PORTVERSION= 2.2.6b +PORTVERSION= 2.2.10 CATEGORIES= devel MASTER_SITES= ${MASTER_SITE_GNU} MASTER_SITE_SUBDIR= libtool DISTNAME= libtool-${PORTVERSION} -EXTRACT_SUFX= .tar.lzma -MAINTAINER= kwm@FreeBSD.org +MAINTAINER= autotools@FreeBSD.org COMMENT?= Generic shared library support script -WRKSRC= ${WRKDIR}/libtool-${PORTVERSION:S|a||} -USE_XZ= yes +LICENSE?= GPLv2 +LICENSE_FILE?= ${WRKSRC}/COPYING + GNU_CONFIGURE= yes CONFIGURE_ARGS?= --disable-ltdl-install CONFIGURE_ENV= MAKEINFO="makeinfo --no-split" INFO?= libtool +.if ${PORTNAME} != "libltdl" +MAN1= libtool.1 libtoolize.1 +.endif post-patch: - ${REINPLACE_CMD} -e 's|sed gsed|sed|g' ${WRKSRC}/configure + @${REINPLACE_CMD} -e 's|sed gsed|sed|g' \ + -e 's|CC=cc|CC=${CC}|g' \ + ${WRKSRC}/configure ${WRKSRC}/libltdl/configure + +post-configure: + @${FIND} ${WRKSRC} -type f | ${XARGS} ${TOUCH} -f .include <bsd.port.mk> |