diff options
author | tobez <tobez@FreeBSD.org> | 2006-04-18 18:00:01 +0800 |
---|---|---|
committer | tobez <tobez@FreeBSD.org> | 2006-04-18 18:00:01 +0800 |
commit | 5ce7f0754c4e3b5e2c5cffcd2d5bf34ea43ccc6d (patch) | |
tree | d1230c44e98ef61cb434443eb8f02b213d971049 /math/pari/Makefile | |
parent | 550fdb0029d8c55efd954a73cbba21db3241321c (diff) | |
download | freebsd-ports-gnome-5ce7f0754c4e3b5e2c5cffcd2d5bf34ea43ccc6d.tar.gz freebsd-ports-gnome-5ce7f0754c4e3b5e2c5cffcd2d5bf34ea43ccc6d.tar.zst freebsd-ports-gnome-5ce7f0754c4e3b5e2c5cffcd2d5bf34ea43ccc6d.zip |
Update to 2.1.7.
Submitted by: maintainer
PR: 93944
Diffstat (limited to 'math/pari/Makefile')
-rw-r--r-- | math/pari/Makefile | 35 |
1 files changed, 16 insertions, 19 deletions
diff --git a/math/pari/Makefile b/math/pari/Makefile index 61a374f7d0ee..913000e0263c 100644 --- a/math/pari/Makefile +++ b/math/pari/Makefile @@ -6,48 +6,45 @@ # PORTNAME= pari -PORTVERSION= 2.1.6 +PORTVERSION= ${MAJOR_VERSION}.${MINOR_VERSION}.${REV_VERSION} CATEGORIES= math -MASTER_SITES= http://pari.math.u-bordeaux.fr/pub/pari/unix/ +MASTER_SITES= http://pari.math.u-bordeaux.fr/pub/pari/unix/ +DISTNAME= pari-${MAJOR_VERSION}.${MINOR_VERSION}.${REV_VERSION} MAINTAINER= yoshiaki@kt.rim.or.jp COMMENT= Mathmatics library and advanced calculator package -EXTRACT_SUFX= .tgz +CONFLICTS= pari-2.2.* + +EXTRACT_SUFX= .tgz +NO_LATEST_LINK= yes INSTALLS_SHLIB= yes HAS_CONFIGURE= yes CONFIGURE_SCRIPT= Configure CONFIGURE_ARGS= --prefix=${PREFIX} --share-prefix=${PREFIX}/share -# build is broken on some locales -CONFIGURE_ENV= LANG=C -MAKE_ENV= LANG=C -USE_GMAKE= yes -USE_REINPLACE= yes +#USE_GMAKE= yes MAKE_ARGS= gp +PLIST_SUB= MAJOR_VERSION=${MAJOR_VERSION} MINOR_VERSION=${MINOR_VERSION} REV_VERSION=${REV_VERSION} + +MAJOR_VERSION= 2 +MINOR_VERSION= 1 +REV_VERSION= 7 MAN1= gp.1 gphelp.1 tex2mail.1 MLINKS= gp.1 pari.1 -HAVE_EMACS!= which emacs || echo nope -.if ${HAVE_EMACS} != "nope" -PLIST= ${PKGDIR}/pkg-plist.emacs -.endif - .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 502126 -USE_GCC= 3.2 +HAVE_EMACS!= ${WHICH} emacs || ${ECHO} nope +.if ${HAVE_EMACS} != "nope" +PLIST= ${PKGDIR}/pkg-plist.emacs .endif .if ${ARCH} == "amd64" CFLAGS+= -fPIC .endif -.if ${ARCH} == "sparc64" || ${ARCH} == "ia64" -BROKEN= "Does not compile on sparc64 or ia64" -.endif - post-patch: @${REINPLACE_CMD} -e 's|-O3|"${CFLAGS}"|' ${WRKSRC}/${CONFIGURE_SCRIPT} |