svn commit: r390947 - branches/2015Q2/lang/yap-devel
Danilo Egea Gondolfo
danilo at FreeBSD.org
Tue Jun 30 03:30:31 UTC 2015
Author: danilo
Date: Tue Jun 30 03:30:30 2015
New Revision: 390947
URL: https://svnweb.freebsd.org/changeset/ports/390947
Log:
MFH: r390944
- Add missing dependency on libgmp
- Add LDFLAGS necessary to link with libgmp
- Fix shebang on an example file
PR: 201133
Submitted by: amdmi3
Approved by: ports-secteam (delphij)
Modified:
branches/2015Q2/lang/yap-devel/Makefile
Directory Properties:
branches/2015Q2/ (props changed)
Modified: branches/2015Q2/lang/yap-devel/Makefile
==============================================================================
--- branches/2015Q2/lang/yap-devel/Makefile Tue Jun 30 03:26:22 2015 (r390946)
+++ branches/2015Q2/lang/yap-devel/Makefile Tue Jun 30 03:30:30 2015 (r390947)
@@ -3,7 +3,7 @@
PORTNAME= yap
PORTVERSION= 6.3.3
-PORTREVISION= 2
+PORTREVISION= 3
CATEGORIES= lang
MASTER_SITES= http://www.dcc.fc.up.pt/~vsc/Yap/
PKGNAMESUFFIX= -devel
@@ -14,6 +14,8 @@ COMMENT= High-performance Prolog compile
LICENSE= ART20 LGPL3
LICENSE_COMB= dual
+LIB_DEPENDS= libgmp.so:${PORTSDIR}/math/gmp
+
CONFLICTS= yap-6.2.*
OPTIONS_DEFINE= DOCS MYDDAS
@@ -28,12 +30,19 @@ DOCS_INSTALL_TARGET= install install_doc
MYDDAS_LIB_DEPENDS= libiodbc.so:${PORTSDIR}/databases/libiodbc
MYDDAS_CONFIGURE_ENABLE= myddas myddas-top-level
+LDFLAGS+= -L${LOCALBASE}/lib
+MAKE_ENV= PKGLDFLAGS="${LDFLAGS}"
+
STRIP= #none
USE_LDCONFIG= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --enable-max-performance --disable-clpbn-bp
-USES= gmake
+USES= gmake shebangfix
+SHEBANG_FILES= packages/http/examples/demo_inetd
+SHEBANG_LANG= swipl
+swipl_OLD_CMD= /usr/bin/swipl
+swipl_CMD= ${LOCALBASE}/bin/swipl # installed by lang/swi-pl
USE_GCC= any
EXTRACT_CMD= ${GZIP_CMD}
More information about the svn-ports-all
mailing list