mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-27 05:10:36 +00:00
292a504db5
Submitted by: Gerhard Gonter <g.gonter@ieee.org>
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# New ports collection makefile for: SWI-Prolog
|
|
# Date created: 10 August 1996
|
|
# Whom: Michael Butschky <butsch@computi.erols.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= swi-pl
|
|
PORTVERSION= 5.4.6
|
|
CATEGORIES= lang
|
|
MASTER_SITES= ftp://ftp.swi.psy.uva.nl/SWI-Prolog/ \
|
|
http://gollem.science.uva.nl/cgi-bin/nph-download/SWI-Prolog/
|
|
DISTNAME= pl-${PORTVERSION}
|
|
|
|
MAINTAINER= g.gonter@ieee.org
|
|
COMMENT= Edinburgh-style Prolog compiler
|
|
|
|
CONFLICTS= ploticus-[0-9]* slffea-[0-9]* TenDRA-[0-9]*
|
|
NOPRECIOUSMAKEVARS=yes
|
|
USE_REINPLACE= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --host=${MACHINE_ARCH}-${OPSYS:L} --disable-mt
|
|
MAN1= pl.1 plrc.1 plld.1
|
|
PLIST_SUB= DISTNAME=${DISTNAME} ARCH=${ARCH} OS=${OPSYS:L}
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if (${ARCH} == "i386")
|
|
PLIST_SUB+= BITS=32
|
|
.else
|
|
PLIST_SUB+= BITS=64
|
|
.endif
|
|
|
|
.if (${ARCH} == "alpha")
|
|
EXTRA_PATCHES= ${FILESDIR}/extra-patch-src-configure \
|
|
${FILESDIR}/extra-patch-src-Makefile-in
|
|
.endif
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/edit/s/INSTALL_PROGRAM/BSD_INSTALL_SCRIPT/g' \
|
|
${WRKSRC}/src/Makefile.in
|
|
|
|
post-configure:
|
|
${REINPLACE_CMD} -e '/MALLOC_H/s/^#define \(HAVE_.*_MALLOC_H\).*/\/\* #undef \1 \*\//g' \
|
|
${WRKSRC}/src/config.h
|
|
${REINPLACE_CMD} -e '/^ARCH=/s/^ARCH=.*/ARCH=${ARCH}-${OPSYS:L}/' \
|
|
${WRKSRC}/src/Makefile
|
|
|
|
post-install:
|
|
.for f in pl plld plrc
|
|
@${STRIP_CMD} ${PREFIX}/lib/${DISTNAME}/bin/${ARCH}-${OPSYS:L}/$f
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|