blob: a6d2eb23cb8b5fef9831bfc50c879fe10a55c37d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
# Created by: Motoyuki Kasahara <m-kasahr@sra.co.jp>
# $FreeBSD$
PORTNAME= libtool
PORTREVISION= 0
COMMENT= Generic shared library support script
.include "${.CURDIR}/../libtool/Makefile.common"
LICENSE= GPLv2
LICENSE_FILE= ${WRKSRC}/COPYING
BUILD_DEPENDS= gm4:${PORTSDIR}/devel/m4
RUN_DEPENDS= gm4:${PORTSDIR}/devel/m4
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --disable-ltdl-install
MAKE_ARGS= MAKEINFOFLAGS=--no-split
USES+= makeinfo
INFO= libtool
post-patch:
@${RM} -f ${WRKSRC}/doc/*.info*
.for f in build-aux/ltmain.sh configure libtoolize.in m4/libtool.m4
@${TOUCH} -mr ${WRKSRC}/${f}.orig ${WRKSRC}/${f}
.endfor
.include <bsd.port.mk>
|