openbsd-ports/devel/mpfr/Makefile
naddy c344735e9f Import mpfr 2.2.0 (which was split off from gmp)
The MPFR library is a C library for multiple-precision floating-point
computations with exact rounding (also called correct rounding).
It is based on the GMP multiple-precision library.

Joint work with espie@
2006-11-01 18:41:21 +00:00

40 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.1.1.1 2006/11/01 18:41:21 naddy Exp $
COMMENT= "library for multiple-precision floating-point computations"
DISTNAME= mpfr-2.2.0
SHARED_LIBS += mpfr 0.0 # .1.0
CATEGORIES= devel math
HOMEPAGE= http://www.mpfr.org/
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
# (L)GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}${DISTNAME}/
DIST_SUBDIR= ${DISTNAME}
.for i in 01 02 03 04 05 06 07 08 09 10 11 12 13 14 15 16
PATCHFILES+= patch$i
.endfor
PATCH_DIST_STRIP=-p1
# no interlibrary dependency, though
LIB_DEPENDS= gmp:gmp->=4.1.0:devel/gmp
SEPARATE_BUILD= simple
USE_LIBTOOL= Yes
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
--with-gmp=${LOCALBASE}
REORDER_DEPENDENCIES=${PORTSDIR}/infrastructure/mk/automake.dep
# make sure we do not pick up an installed version of libmpfr
REGRESS_FLAGS= LIBTOOL="${LIBTOOL} ${LIBTOOL_FLAGS}" ${_lt_libs} \
LDFLAGS="-L${WRKBUILD}/.libs -L${LOCALBASE}/lib"
.include <bsd.port.mk>