1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-25 09:34:11 +00:00
freebsd-ports/lang/swi-pl/Makefile
Masafumi Max NAKANE cf9458a852 Upgrade to 5.4.5.
Submitted by:	Gerhard Gonter <g.gonter@ieee.org>
PR:		74279, 74791

Gerhard Gonter agreed to take over the maintainership.
2004-12-27 04:00:58 +00:00

57 lines
1.3 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.5
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
.endif
.if ${ARCH} != "i386"
BROKEN= "Broken pkg-plist"
.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
post-install:
.for f in pl plld plrc
@${STRIP_CMD} ${PREFIX}/lib/${DISTNAME}/bin/${ARCH}-${OPSYS:L}/$f
.endfor
.include <bsd.port.post.mk>