diff options
author | jschauma <jschauma@pkgsrc.org> | 2002-10-12 21:19:58 +0000 |
---|---|---|
committer | jschauma <jschauma@pkgsrc.org> | 2002-10-12 21:19:58 +0000 |
commit | 991f720ccc505c2b27a0a512cd55f62bd02b5d35 (patch) | |
tree | 7f868cb641d394578539799ef63d50204210713b | |
parent | 90ee03f829468778aa88aedfa97e5bedc05182e4 (diff) | |
download | pkgsrc-991f720ccc505c2b27a0a512cd55f62bd02b5d35.tar.gz |
The DISTFILE for powerpc requires a ".bin" suffix.
Pointed out by John Klos (john at sixgirls dot org)
-rw-r--r-- | lang/blackdown-jdk13/Makefile | 6 | ||||
-rw-r--r-- | lang/blackdown-jre13/Makefile | 4 |
2 files changed, 8 insertions, 2 deletions
diff --git a/lang/blackdown-jdk13/Makefile b/lang/blackdown-jdk13/Makefile index cf1b2bb63f3..5fcc24e2eed 100644 --- a/lang/blackdown-jdk13/Makefile +++ b/lang/blackdown-jdk13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2002/09/08 10:00:19 schmonz Exp $ +# $NetBSD: Makefile,v 1.12 2002/10/12 21:19:58 jschauma Exp $ # BASENAME= j2sdk @@ -10,6 +10,10 @@ COMMENT= Linux port of the Blackdown Java(tm) Runtime Environment DEPENDS= blackdown-jre13>=1:../../lang/blackdown-jre13 +.if ${MACHINE_ARCH} == "powerpc" +DISTNAME:= ${DISTNAME}.bin +.endif + # these are part of JRE do-configure: @${RM} -r ${WRKSRC}/jre ${WRKSRC}/LICENSE ${WRKSRC}/CHANGES \ diff --git a/lang/blackdown-jre13/Makefile b/lang/blackdown-jre13/Makefile index 97cb40f102f..f80e1a755f5 100644 --- a/lang/blackdown-jre13/Makefile +++ b/lang/blackdown-jre13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2002/09/08 09:59:51 schmonz Exp $ +# $NetBSD: Makefile,v 1.5 2002/10/12 21:19:58 jschauma Exp $ # BASENAME= j2re @@ -7,6 +7,8 @@ PKGNAME= blackdown-jre13-1 .if ${MACHINE_ARCH} == "arm" DISTNAME= ${BASENAME}-RC1-linux-arm +.elif ${MACHINE_ARCH} == "powerpc" +DISTNAME:= ${DISTNAME}.bin .endif COMMENT= Blackdown's Java(tm) Runtime Environment 1.3.1 |