mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-08 06:48:28 +00:00
86c6fc4c0d
- Update devel/gettext to 0.19.4 - Update devel/libtool and devel/libltdl to 2.4.5 - This version of libtool has been fixed to pass -fstack-protector to the compiler during linking. Add the same fix to USES=libtool. This should improve SSP support on FreeBSD/i386 8 and 9. - databases/libmemcached, security/sssd: patch configure.ac so AC_CONFIG_AUX_DIR appears earlier. For databases/libmemcached changing configure.ac causes manpages to be regenerated which requires extra dependencies so patch a makefile to prevent that. - devel/xfce4-dev-tools: only depend on recent versions of autoconf and automake PR: 196938 Exp-run by: antoine Approved by: portmgr (antoine)
29 lines
558 B
Makefile
29 lines
558 B
Makefile
# 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*
|
|
@${TOUCH} ${WRKSRC}/doc/libtool.1
|
|
|
|
.include <bsd.port.mk>
|