bbab7f59e9
- Remove all references to defunct ARCH arm - Remove all references to defunct ARCH sparc64 - Remove x11-drivers/xf86-video-sunffb which requires defunct sparc64 ARCH - Remove sysutils/afbinit requires defunct sparc64 ARCH - Remove all references to bktr driver - Remove all references to defunct FreeBSD_12 - Remove all references to OSVERSION/OSREL corresponding to 12 - Remove conditionals in Mk/Uses/cabal.mk - Remove sparc reference from Mk/Uses/qt-dist.mk - Remove BROKEN_sparc64/NOT_FOR_ARCH=sparc64 - Remove BROKEN_FreeBSD_12* from: - Remove OpenSSL patches from: - Remove conditional flags for OSVERSION >= 1300000 to fixed flags. Also move conditional flags for non sparc64/arm ARCH to fixed flags. Reviewed by: brooks, jbeich, rene, salvadore Differential Revision: https://reviews.freebsd.org/D42068
75 lines
1.6 KiB
Makefile
75 lines
1.6 KiB
Makefile
PORTNAME= newlisp
|
|
PORTVERSION= 10.7.5
|
|
PORTREVISION= 3
|
|
CATEGORIES= lang
|
|
MASTER_SITES= http://www.newlisp.org/downloads/
|
|
|
|
MAINTAINER= olgeni@FreeBSD.org
|
|
COMMENT= LISP like scripting language
|
|
WWW= http://www.newlisp.org/
|
|
|
|
LICENSE= GPLv3
|
|
|
|
LIB_DEPENDS= libffi.so:devel/libffi
|
|
|
|
CONFLICTS= newlisp-devel
|
|
|
|
USES= readline tar:tgz
|
|
OPTIONS_SUB= yes
|
|
|
|
HAS_CONFIGURE= yes
|
|
ALL_TARGET= default
|
|
|
|
REINPLACE_ARGS= -i ""
|
|
|
|
MODULES= canvas cgi crypto ftp getopts infix odbc plot pop3 \
|
|
postscript smtp smtpx stat unix xmlrpc-client zlib
|
|
|
|
DOCS= ANDROID.txt Android.html CHANGES COPYING CREDITS \
|
|
CodePatterns.html ExpressionEvaluation.html INSTALL \
|
|
LOCALIZATION License.html MemoryManagement.html \
|
|
manual_frame.html newLISP-${PORTVERSION}-Release.html \
|
|
newLISPdoc.html newlisp-man.txt newlisp_index.html \
|
|
newlisp_manual.html newlispdoc-man.txt
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES GSL MYSQL PGSQL SQLITE
|
|
GSL_DESC= GSL (GNU Scientific Library)
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CFLAGS+= -DNEWLISP64
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MGSL}
|
|
LIB_DEPENDS+= libgsl.so:math/gsl
|
|
MODULES+= gsl
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MMYSQL}
|
|
USES+= mysql
|
|
MODULES+= mysql
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
|
USES+= pgsql
|
|
MODULES+= postgres
|
|
.endif
|
|
|
|
.if ${PORT_OPTIONS:MSQLITE}
|
|
USES+= sqlite
|
|
MODULES+= sqlite3
|
|
.endif
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${DOCS:S,^,${WRKSRC}/doc/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install-EXAMPLES-on:
|
|
@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/examples/* ${STAGEDIR}${EXAMPLESDIR}
|
|
|
|
.include <bsd.port.mk>
|