diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-08-08 06:49:31 +0800 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-08-08 06:49:31 +0800 |
commit | 48887e4ba86a51d4e24b458d7f06bfa3ae75c6cb (patch) | |
tree | 280707e74f830bfd20743509d70fc602de263601 /lang/TenDRA | |
parent | 3103ea2f760bed4702caf6db3c767ed3f4289194 (diff) | |
download | freebsd-ports-gnome-48887e4ba86a51d4e24b458d7f06bfa3ae75c6cb.tar.gz freebsd-ports-gnome-48887e4ba86a51d4e24b458d7f06bfa3ae75c6cb.tar.zst freebsd-ports-gnome-48887e4ba86a51d4e24b458d7f06bfa3ae75c6cb.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 && \ |