Sun Jun 30 09:43:31 2013 UTC ()
Update to 2.7

* Fix pgsql dependency.

Changelog:
Version 2.7, June 2013
* Larger test set.
* Fixes several reported issues.


(ryoon)
diff -r1.7 -r1.8 pkgsrc/lang/algol68g/Makefile
diff -r1.3 -r1.4 pkgsrc/lang/algol68g/distinfo
diff -r1.1.1.1 -r1.2 pkgsrc/lang/algol68g/options.mk

cvs diff -r1.7 -r1.8 pkgsrc/lang/algol68g/Makefile (expand / switch to unified diff)

--- pkgsrc/lang/algol68g/Makefile 2013/06/11 19:40:22 1.7
+++ pkgsrc/lang/algol68g/Makefile 2013/06/30 09:43:31 1.8
@@ -1,16 +1,16 @@ @@ -1,16 +1,16 @@
1# $NetBSD: Makefile,v 1.7 2013/06/11 19:40:22 asau Exp $ 1# $NetBSD: Makefile,v 1.8 2013/06/30 09:43:31 ryoon Exp $
2 2
3DISTNAME= algol68g-2.6 3DISTNAME= algol68g-2.7
4CATEGORIES= lang 4CATEGORIES= lang
5MASTER_SITES= http://jmvdveer.home.xs4all.nl/ 5MASTER_SITES= http://jmvdveer.home.xs4all.nl/
6 6
7MAINTAINER= olafs@cs.ru.nl 7MAINTAINER= olafs@cs.ru.nl
8HOMEPAGE= http://jmvdveer.home.xs4all.nl/algol.html 8HOMEPAGE= http://jmvdveer.home.xs4all.nl/algol.html
9COMMENT= Algol 68genie compiler 9COMMENT= Algol 68genie compiler
10LICENSE= gnu-gpl-v3 10LICENSE= gnu-gpl-v3
11 11
12USE_LANGUAGES= c 12USE_LANGUAGES= c
13GNU_CONFIGURE= yes 13GNU_CONFIGURE= yes
14CONFIGURE_ARGS= --docdir=$(PREFIX)/share/doc/$(PKGBASE) 14CONFIGURE_ARGS= --docdir=$(PREFIX)/share/doc/$(PKGBASE)
15 15
16TEST_TARGET= check 16TEST_TARGET= check

cvs diff -r1.3 -r1.4 pkgsrc/lang/algol68g/distinfo (expand / switch to unified diff)

--- pkgsrc/lang/algol68g/distinfo 2013/06/11 19:40:22 1.3
+++ pkgsrc/lang/algol68g/distinfo 2013/06/30 09:43:31 1.4
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.3 2013/06/11 19:40:22 asau Exp $ 1$NetBSD: distinfo,v 1.4 2013/06/30 09:43:31 ryoon Exp $
2 2
3SHA1 (algol68g-2.6.tar.gz) = a054de1a74b84adec43ea1db4cd8ac0798e0fd3e 3SHA1 (algol68g-2.7.tar.gz) = b12f9ec9a70297f289b8e59c990788c08b11d759
4RMD160 (algol68g-2.6.tar.gz) = 1b32b3974c76056392dc15fc932c67b2c5d09d75 4RMD160 (algol68g-2.7.tar.gz) = d52fe93c9ac81d57033f88c9de9a2c1694af72da
5Size (algol68g-2.6.tar.gz) = 613372 bytes 5Size (algol68g-2.7.tar.gz) = 666918 bytes

cvs diff -r1.1.1.1 -r1.2 pkgsrc/lang/algol68g/options.mk (expand / switch to unified diff)

--- pkgsrc/lang/algol68g/options.mk 2011/10/11 12:43:50 1.1.1.1
+++ pkgsrc/lang/algol68g/options.mk 2013/06/30 09:43:31 1.2
@@ -1,23 +1,24 @@ @@ -1,23 +1,24 @@
1# $NetBSD: options.mk,v 1.1.1.1 2011/10/11 12:43:50 ryoon Exp $ 1# $NetBSD: options.mk,v 1.2 2013/06/30 09:43:31 ryoon Exp $
2 2
3PKG_OPTIONS_VAR= PKG_OPTIONS.a68g 3PKG_OPTIONS_VAR= PKG_OPTIONS.a68g
4PKG_SUPPORTED_OPTIONS= plotutils pgsql 4PKG_SUPPORTED_OPTIONS= plotutils pgsql
5PKG_SUGGESTED_OPTIONS= plotutils pgsql 5PKG_SUGGESTED_OPTIONS= plotutils
6 6
7.include "../../mk/bsd.options.mk" 7.include "../../mk/bsd.options.mk"
8 8
9.if !empty(PKG_OPTIONS:Mplotutils) 9.if !empty(PKG_OPTIONS:Mplotutils)
10. include "../../graphics/plotutils/buildlink3.mk" 10. include "../../graphics/plotutils/buildlink3.mk"
11CONFIGURE_ARGS+= --with-plotutils 11CONFIGURE_ARGS+= --with-plotutils
12.else 12.else
13CONFIGURE_ARGS+= --without-plotutils 13CONFIGURE_ARGS+= --without-plotutils
14.endif 14.endif
15 15
16# It seems that when including PostgreSQL support it doesn't actually 16# It seems that when including PostgreSQL support it doesn't actually
17# need to have it installed at build time, just at run time. 17# need to have it installed at build time, just at run time.
18# So maybe this DEPENDS is undesirable. 18# So maybe this DEPENDS is undesirable.
19.if !empty(PKG_OPTIONS:Mpgsql) 19.if !empty(PKG_OPTIONS:Mpgsql)
20CONFIGURE_ARGS+= --with-pgsql 20CONFIGURE_ARGS+= --with-pgsql
 21.include "../../mk/pgsql.buildlink3.mk"
21.else 22.else
22CONFIGURE_ARGS+= --without-pgsql 23CONFIGURE_ARGS+= --without-pgsql
23.endif 24.endif