3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
34 lines
740 B
Makefile
34 lines
740 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: libgmp3
|
|
# Date created: Jan 11, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= libgmp
|
|
PORTVERSION= 4.1.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= math devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= gmp
|
|
DISTNAME= gmp-${PORTVERSION}
|
|
|
|
MAINTAINER= ale@FreeBSD.org
|
|
COMMENT= A free library for arbitrary precision arithmetic
|
|
|
|
CONFLICTS= libgmp-2*
|
|
USE_REINPLACE= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ENV= MAKEINFO="makeinfo --no-split"
|
|
CONFIGURE_ARGS= --enable-cxx --enable-mpfr
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-extract:
|
|
@rm -f ${WRKSRC}/gmp.info*
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -name "Makefile.in" | \
|
|
${XARGS} ${REINPLACE_CMD} -e 's|--tag=CC||g'
|
|
|
|
.include <bsd.port.mk>
|