diff options
author | johans <johans@FreeBSD.org> | 2013-10-08 17:08:22 +0800 |
---|---|---|
committer | johans <johans@FreeBSD.org> | 2013-10-08 17:08:22 +0800 |
commit | 4f6d039cd49dd22b36090cf75579c302629df1e1 (patch) | |
tree | 96384d32a30601d0e80e39a43b61a33f4f4222e6 /lang/algol68g/Makefile | |
parent | 6f3e4e67201b90629813fab34c5dae7016d57d43 (diff) | |
download | freebsd-ports-gnome-4f6d039cd49dd22b36090cf75579c302629df1e1.tar.gz freebsd-ports-gnome-4f6d039cd49dd22b36090cf75579c302629df1e1.tar.zst freebsd-ports-gnome-4f6d039cd49dd22b36090cf75579c302629df1e1.zip |
- Update Algol-68 Genie to 2.8
- Enable stage support
- Add work-around to fix OS detection, enables TCP/IP support
- Add work-around to fix dlopen detection, enables compilation support
Diffstat (limited to 'lang/algol68g/Makefile')
-rw-r--r-- | lang/algol68g/Makefile | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/lang/algol68g/Makefile b/lang/algol68g/Makefile index b49cf7bc922c..22f89fce8d6d 100644 --- a/lang/algol68g/Makefile +++ b/lang/algol68g/Makefile @@ -1,15 +1,14 @@ # $FreeBSD$ PORTNAME= algol68g -PORTVERSION= 2.7 -PORTREVISION= 1 +PORTVERSION= 2.8 CATEGORIES= lang MASTER_SITES= http://jmvdveer.home.xs4all.nl/ MAINTAINER= johans@FreeBSD.org COMMENT= Algol 68 Genie compiler -LIB_DEPENDS= gsl:${PORTSDIR}/math/gsl +LIB_DEPENDS= libgsl.so:${PORTSDIR}/math/gsl OPTIONS_DEFINE= GNUPLOT PGSQL OPTIONS_DEFAULT=GNUPLOT PGSQL @@ -17,15 +16,14 @@ OPTIONS_DEFAULT=GNUPLOT PGSQL GNU_CONFIGURE= yes CONFIGURE_ARGS+=--enable-compiler -MAN1= a68g.1 PLIST_DIRS= include/algol68g -PLIST_FILES= bin/a68g include/algol68g/a68g.h include/algol68g/a68g-config.h +PLIST_FILES= bin/a68g man/man1/a68g.1.gz \ + include/algol68g/a68g.h include/algol68g/a68g-config.h -NO_STAGE= yes .include <bsd.port.options.mk> .if ${PORT_OPTIONS:MGNUPLOT} -LIB_DEPENDS+= plot:${PORTSDIR}/graphics/plotutils +LIB_DEPENDS+= libplot.so:${PORTSDIR}/graphics/plotutils .else CONFIGURE_ARGS+=--disable-plotutils .endif @@ -38,7 +36,8 @@ CONFIGURE_ARGS+=--disable-postgresql post-patch: # Skip broken check, assume our $CC works - @${REINPLACE_CMD} -e 's/"xgcc"/"x${CC}"/' ${WRKSRC}/configure + @${REINPLACE_CMD} -Ee 's/.*(\*-freebsd)/\1/' \ + -e 's/"xgcc"/"x${CC}"/; s/-ldl //' ${WRKSRC}/configure @${REINPLACE_CMD} -e '/^install-data-am/s/install-docDATA//' \ ${WRKSRC}/Makefile.in |