mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e0d39220da
Tested by: pav (multiple -exp runs)
38 lines
843 B
Makefile
38 lines
843 B
Makefile
# New ports collection makefile for: libtool
|
|
# Date created: 6 May 1998
|
|
# Whom: Motoyuki Kasahara <m-kasahr@sra.co.jp>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME?= libtool
|
|
PORTVERSION= 2.4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= libtool
|
|
DISTNAME= libtool-${PORTVERSION}
|
|
|
|
MAINTAINER= autotools@FreeBSD.org
|
|
COMMENT?= Generic shared library support script
|
|
|
|
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' \
|
|
-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>
|