mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
188 lines
4.6 KiB
Makefile
188 lines
4.6 KiB
Makefile
# New ports collection makefile for: clisp
|
|
# Date created: Feb 5 2000
|
|
# Whom: Jeff Brown <jabrown@caida.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= clisp
|
|
PORTVERSION= 2.49
|
|
PORTREVISION= 4
|
|
CATEGORIES= lang lisp
|
|
MASTER_SITES= GNU/${PORTNAME}/release/${PORTVERSION}
|
|
|
|
MAINTAINER= jsa@FreeBSD.org
|
|
COMMENT= A Common Lisp implementation
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libavcall.a:${PORTSDIR}/devel/ffcall
|
|
LIB_DEPENDS= readline.6:${PORTSDIR}/devel/readline \
|
|
sigsegv.2:${PORTSDIR}/devel/libsigsegv
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/GNU-GPL
|
|
|
|
USE_ICONV= yes
|
|
USE_LDCONFIG= yes
|
|
USE_GHOSTSCRIPT_BUILD= yes
|
|
WANT_GNOME= yes
|
|
HAS_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --prefix="${PREFIX}" --mandir="${MANPREFIX}/man" \
|
|
--elispdir="${DATADIR}/emacs" --vimdir="${DATADIR}/vim" \
|
|
--docdir="${DOCSDIR}"
|
|
CONFIGURE_TARGET= ${ARCH:S/amd64/x86_64/}-portbld-freebsd${OSREL}
|
|
# Complaints if the environment changes between build stages.
|
|
MAKE_ENV= ${CONFIGURE_ENV}
|
|
BUILD_WRKSRC= ${WRKSRC}/src
|
|
INSTALL_WRKSRC= ${BUILD_WRKSRC}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
MAKE_JOBS_UNSAFE=yes
|
|
|
|
OPTIONS= BDB "Build Berkeley Database module" Off \
|
|
CLX_MIT "Build X11 module (original MIT version)" Off \
|
|
CLX_NEW "Build X11 module (new faster version)" Off \
|
|
DBUS "D-BUS control module" Off \
|
|
FASTCGI "Build FastCGI module" Off \
|
|
GDBM "Build GNU Database manager module" Off \
|
|
GTK2 "Build Gtk+2 module" Off \
|
|
PARI "Build PARI (math and calc lib) module" Off \
|
|
PCRE "Build PCRE (Perl Compatible Regexp) module" Off \
|
|
PGSQL "Build PostgreSQL database module" Off \
|
|
RAWSOCK "Build Raw Socket Access module" On \
|
|
SVM "Enable Support Vector Machines module" Off \
|
|
THREADS "Enable multithreaded (Experimental)" Off \
|
|
WILDCARD "Build wildcard matching module" On \
|
|
ZLIB "Build ZLib interface module " On
|
|
|
|
MAN1= clisp.1 clisp-link.1
|
|
SUB_FILES= pkg-message
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# Semgentation fault in amd64 when using 'mmap(2)', errno = EINVAL.
|
|
.if ${ARCH} == "amd64"
|
|
CONFIGURE_ARGS+=--disable-mmap
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 700000
|
|
BROKEN= Does not build on FreeBSD 6.x
|
|
.endif
|
|
|
|
.if ${ARCH} == "ia64" || ${ARCH} == "powerpc" || ${ARCH} == "sparc64"
|
|
BROKEN= Does not compile on ia64, powerpc, or sparc64
|
|
.endif
|
|
|
|
MODULES= BDB CLX_NEW CLX_MIT DBUS FASTCGI GDBM GTK2 PARI PCRE PGSQL \
|
|
RAWSOCK SVM WILDCARD ZLIB
|
|
|
|
.for mod in ${MODULES}
|
|
. if defined(WITH_${mod})
|
|
PLIST_SUB+= ${mod}=""
|
|
. else
|
|
PLIST_SUB+= ${mod}="@comment "
|
|
. endif
|
|
.endfor
|
|
|
|
.if !defined(WITHOUT_NLS)
|
|
USE_GETTEXT= yes
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.if defined(WITH_BDB)
|
|
USE_BDB= 43+
|
|
CONFIGURE_ARGS+=--with-module=berkeley-db
|
|
CPPFLAGS+= -I${LOCALBASE}/include/db${BDB_VER}
|
|
LDFLAGS+= -L${LOCALBASE}/lib/db${BDB_VER}
|
|
.endif
|
|
|
|
.if defined(WITH_CLX_MIT) && defined(WITH_CLX_NEW)
|
|
IGNORE= selected different implementations of the same X11 module
|
|
.endif
|
|
.if defined(WITH_CLX_MIT) || defined(WITH_CLX_NEW)
|
|
USE_XORG= x11
|
|
.endif
|
|
.if defined(WITH_CLX_MIT)
|
|
CONFIGURE_ARGS+=--with-module=clx/mit-clx
|
|
.endif
|
|
.if defined(WITH_CLX_NEW)
|
|
CONFIGURE_ARGS+=--with-module=clx/new-clx
|
|
.endif
|
|
|
|
.if defined(WITH_DBUS)
|
|
LIB_DEPENDS+= dbus-1.3:${PORTSDIR}/devel/dbus
|
|
CONFIGURE_ARGS+=--with-module=dbus
|
|
.endif
|
|
|
|
.if defined(WITH_FASTCGI)
|
|
LIB_DEPENDS+= fcgi.0:${PORTSDIR}/www/fcgi
|
|
CONFIGURE_ARGS+=--with-module=fastcgi
|
|
.endif
|
|
|
|
.if defined(WITH_GDBM)
|
|
LIB_DEPENDS+= gdbm.4:${PORTSDIR}/databases/gdbm
|
|
CONFIGURE_ARGS+=--with-module=gdbm
|
|
.endif
|
|
|
|
.if defined(WITH_GTK2)
|
|
USE_GNOME= gtk20 libglade2
|
|
CONFIGURE_ARGS+=--with-module=gtk2
|
|
.endif
|
|
|
|
.if defined(WITH_PARI)
|
|
LIB_DEPENDS+= pari-gmp.2:${PORTSDIR}/math/pari
|
|
CONFIGURE_ARGS+=--with-module=pari
|
|
.endif
|
|
|
|
.if defined(WITH_PCRE)
|
|
LIB_DEPENDS+= pcre.1:${PORTSDIR}/devel/pcre
|
|
CONFIGURE_ARGS+=--with-module=pcre
|
|
.endif
|
|
|
|
.if defined(WITH_PGSQL)
|
|
USE_PGSQL= yes
|
|
CONFIGURE_ARGS+=--with-module=postgresql
|
|
.endif
|
|
|
|
.if defined(WITH_RAWSOCK)
|
|
CONFIGURE_ARGS+=--with-module=rawsock
|
|
.endif
|
|
|
|
.if defined(WITH_SVM)
|
|
RUN_DEPENDS+= svm-predict:${PORTSDIR}/science/libsvm
|
|
CONFIGURE_ARGS+=--with-module=libsvm
|
|
.endif
|
|
|
|
.if defined(WITH_THREADS)
|
|
CONFIGURE_ARGS+= --with-threads=POSIX_THREADS \
|
|
LDFLAGS="${PTHREAD_LIBS} ${LDFLAGS}"
|
|
PKGNAMESUFFIX= -threaded
|
|
.endif
|
|
|
|
.if defined(WITH_WILDCARD)
|
|
CONFIGURE_ARGS+=--with-module=wildcard
|
|
.endif
|
|
|
|
.if defined(WITH_ZLIB)
|
|
CONFIGURE_ARGS+=--with-module=zlib
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(WITH_ORACLE)
|
|
@${REINPLACE_CMD} -e 's|-ldl||; s|-lpthread|-lcompat ${PTHREAD_LIBS}|' \
|
|
${WRKSRC}/modules/oracle/link.sh
|
|
.endif
|
|
|
|
pre-install:
|
|
.if defined(WITH_CLX_MIT)
|
|
${CP} ${WRKSRC}/modules/clx/mit-clx/README.CLISP \
|
|
${WRKSRC}/src/clx/mit-clx/README.CLISP
|
|
.endif
|
|
|
|
post-install:
|
|
@${ECHO_CMD}; ${CAT} ${PKGMESSAGE}; ${ECHO_CMD}
|
|
|
|
.include <bsd.port.post.mk>
|