diff options
Diffstat (limited to 'lang/yap/Makefile')
-rw-r--r-- | lang/yap/Makefile | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/lang/yap/Makefile b/lang/yap/Makefile index aadf42d..487cb19 100644 --- a/lang/yap/Makefile +++ b/lang/yap/Makefile @@ -7,9 +7,10 @@ # PORTNAME= yap -PORTVERSION= 4.5.6 +PORTVERSION= 5.0.0 CATEGORIES= lang -MASTER_SITES= http://www.ncc.up.pt/~vsc/Yap/Yap4.5/ +MASTER_SITES= http://www.ncc.up.pt/~vsc/Yap/%SUBDIR%/ +MASTER_SITE_SUBDIR= Yap-${PORTVERSION:R} DISTNAME= Yap-${PORTVERSION} MAINTAINER= ports@FreeBSD.org @@ -17,6 +18,7 @@ COMMENT= A high-performance Prolog compiler LIB_DEPENDS= gmp.6:${PORTSDIR}/math/libgmp4 +USE_REINPLACE= yes GNU_CONFIGURE= yes CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ @@ -26,11 +28,17 @@ INFO= yap .include <bsd.port.pre.mk> -ONLY_FOR_ARCHS= i386 +.if ${ARCH} != "i386" +BROKEN= "Does not compile on !i386" +.endif post-extract: @${RM} -f ${WRKSRC}/docs/*.info* +post-patch: + @${REINPLACE_CMD} -e \ + 's|@value{VERSION}|${PORTVERSION}|g' ${WRKSRC}/docs/yap.tex + post-build: cd ${WRKSRC}/docs && makeinfo --no-split yap.tex |