2010-09-09 21:19:13 +00:00
|
|
|
# New ports collection makefile for: xshttpd
|
|
|
|
# Date created: 9 September 2010
|
|
|
|
# Whom: Johan van Selst <johans@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= algol68g
|
2012-06-30 22:06:08 +00:00
|
|
|
PORTVERSION= 2.4.1
|
2010-09-09 21:19:13 +00:00
|
|
|
CATEGORIES= lang
|
2011-07-09 11:43:14 +00:00
|
|
|
MASTER_SITES= http://jmvdveer.home.xs4all.nl/
|
2010-09-09 21:19:13 +00:00
|
|
|
|
|
|
|
MAINTAINER= johans@FreeBSD.org
|
2012-07-29 11:17:02 +00:00
|
|
|
COMMENT= Algol 68 Genie compiler
|
2010-09-09 21:19:13 +00:00
|
|
|
|
2012-06-16 15:51:36 +00:00
|
|
|
LIB_DEPENDS= gsl:${PORTSDIR}/math/gsl
|
2010-09-09 21:19:13 +00:00
|
|
|
|
2012-06-16 15:51:36 +00:00
|
|
|
OPTIONS_DEFINE= GNUPLOT PGSQL
|
|
|
|
OPTIONS_DEFAULT=GNUPLOT PGSQL
|
2010-09-09 21:19:13 +00:00
|
|
|
|
2011-01-22 14:05:58 +00:00
|
|
|
GNU_CONFIGURE= yes
|
|
|
|
CONFIGURE_ARGS+=--enable-compiler
|
2010-09-09 21:19:13 +00:00
|
|
|
|
|
|
|
MAN1= a68g.1
|
2011-01-22 14:05:58 +00:00
|
|
|
PLIST_DIRS= include/algol68g
|
2011-12-03 08:12:56 +00:00
|
|
|
PLIST_FILES= bin/a68g include/algol68g/a68g.h include/algol68g/a68g-config.h
|
2010-09-09 21:19:13 +00:00
|
|
|
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2012-06-16 15:51:36 +00:00
|
|
|
.if ${PORT_OPTIONS:MGNUPLOT}
|
|
|
|
LIB_DEPENDS+= plot:${PORTSDIR}/graphics/plotutils
|
2011-01-22 14:05:58 +00:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-plotutils
|
2010-09-09 21:19:13 +00:00
|
|
|
.endif
|
|
|
|
|
2012-06-16 15:51:36 +00:00
|
|
|
.if ${PORT_OPTIONS:MPGSQL}
|
2010-09-09 21:19:13 +00:00
|
|
|
USE_PGSQL= yes
|
2011-01-22 14:05:58 +00:00
|
|
|
.else
|
|
|
|
CONFIGURE_ARGS+=--disable-postgresql
|
2010-09-09 21:19:13 +00:00
|
|
|
.endif
|
|
|
|
|
2011-01-22 14:05:58 +00:00
|
|
|
post-patch:
|
2012-06-30 22:06:08 +00:00
|
|
|
# Skip broken check, assume our $CC works
|
2011-01-22 14:05:58 +00:00
|
|
|
@${REINPLACE_CMD} -e 's/"xgcc"/"x${CC}"/' ${WRKSRC}/configure
|
2012-06-16 15:51:36 +00:00
|
|
|
@${REINPLACE_CMD} -e '/^install-data-am/s/install-docDATA//' \
|
|
|
|
${WRKSRC}/Makefile.in
|
2010-09-21 19:43:17 +00:00
|
|
|
|
2011-01-22 14:05:58 +00:00
|
|
|
.include <bsd.port.mk>
|