diff options
author | asami <asami@FreeBSD.org> | 1998-08-08 06:49:31 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1998-08-08 06:49:31 +0800 |
commit | 85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5 (patch) | |
tree | 9123ac40cb51e7048c20f785f436da05e43f7c22 /lang/TenDRA | |
parent | d48c5312ffc97eda9cb08048c42df412bf21d977 (diff) | |
download | freebsd-ports-gnome-85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5.tar.gz freebsd-ports-gnome-85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5.tar.zst freebsd-ports-gnome-85244f3c4f19ca5a1a28eb1e3181bfc7d094ddf5.zip |
Make these ports (TenDRA, egcs, gcc28, glibstdc++28 and guavac, all
under lang) use ${OSREL} as defined in bsd.port.mk rev 1.281 and
1.227.2.43.
Note gcc28 is hopelessly broken, it uses an undefined variable
${GNUOSREL} and thus has an empty string wherever ${OSREL} should
be. However, it's consistent with its own PLIST at the current state
so I haven't "fixed" it yet.
Diffstat (limited to 'lang/TenDRA')
-rw-r--r-- | lang/TenDRA/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lang/TenDRA/Makefile b/lang/TenDRA/Makefile index 1c6c1c937823..43ce10ea0779 100644 --- a/lang/TenDRA/Makefile +++ b/lang/TenDRA/Makefile @@ -3,7 +3,7 @@ # Date created: 7 Apr 1998 # Whom: Robert Nordier <rnordier@iafrica.com> # -# $Id: Makefile,v 1.3 1998/06/06 12:18:39 rnordier Exp $ +# $Id: Makefile,v 1.4 1998/06/09 13:21:03 rnordier Exp $ # DISTNAME= TenDRA-4.1.2 @@ -12,7 +12,7 @@ MASTER_SITES= ftp://alph.dera.gov.uk/pub/TenDRA/ MAINTAINER= rnordier@FreeBSD.ORG -OSREL!= uname -r +OSRELEASE!= uname -r PLIST= ${WRKDIR}/PLIST MAN1= calculus.1 disp.1 lexi.1 pl.1 sid.1 tcc.1 tchk.1 \ tcpplus.1 tdfc2.1 tld.1 tnc.1 trans.1 tspec.1 @@ -29,7 +29,7 @@ pre-configure: INSTALL >INSTALL.build && \ chmod a+x INSTALL.build && \ chmod a-x INSTALL) - @${SED} 's:%OSREL%:${OSREL}:' ${PKGDIR}/PLIST >${PLIST} + @${SED} 's:%OSREL%:${OSRELEASE}:' ${PKGDIR}/PLIST >${PLIST} do-build: @(PATH=${WRKSRC}/bin:$$PATH && \ |