1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-22 20:41:26 +00:00

Upgrade to v206p1. Mark as 'only for i386', till the ports to other

Tier-1 architectures are completed.
This commit is contained in:
Joseph Koshy 2004-03-03 16:47:57 +00:00
parent 0ea5a419ab
commit 05f2dc0cc2
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102846
4 changed files with 745 additions and 1792 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= drscheme
PORTVERSION= 205
PORTVERSION= 206p1
CATEGORIES= lang scheme
MASTER_SITES= http://download.plt-scheme.org/bundles/${PORTVERSION}/plt/ \
http://www.cs.utah.edu/plt/download/${PORTVERSION}/plt/ \
@ -14,7 +14,8 @@ MASTER_SITES= http://download.plt-scheme.org/bundles/${PORTVERSION}/plt/ \
ftp://archive.informatik.uni-tuebingen.de/unix/language/plt/${PORTVERSION}/plt/ \
ftp://infogroep.be/pub/plt/bundles/${PORTVERSION}/plt/ \
ftp://morpheus.wish.com.mx/pub/plt/${PORTVERSION}/plt/
DISTNAME= plt-${PORTVERSION}.src.x
DISTNAME= plt-${PORTVERSION}-src-unix
EXTRACT_SUFX= .tgz
MAINTAINER= jkoshy@FreeBSD.org
COMMENT= An interactive, integrated, graphical Scheme programming environment
@ -27,14 +28,12 @@ USE_XLIB= yes
PLTHOME= ${PREFIX}/drscheme
DRS_D= bin install collects teachpack include lib
DRS_B= drscheme mred mzc mzscheme tex2page
DRS_B= drscheme mred mzc mzscheme
MAN1= drscheme.1 mred.1 mzscheme.1
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
BROKEN= "Does not compile on !i386"
.endif
ONLY_FOR_ARCH= i386
do-install:
${MKDIR} ${PLTHOME}

View File

@ -1 +1,2 @@
MD5 (drscheme/205/plt-205.src.x.tar.gz) = 3ce74fbd67b366218435dbdc6123dc4b
MD5 (drscheme/206p1/plt-206p1-src-unix.tgz) = b53d1bfac39966d51caca19d122e2b6a
SIZE (drscheme/206p1/plt-206p1-src-unix.tgz) = 8730583

View File

@ -1,26 +1,11 @@
--- ../install-- Thu Jun 20 21:30:33 2002
+++ ../install Wed Jul 24 13:23:48 2002
@@ -138,11 +138,12 @@
--- ../install.orig Sat Jan 3 04:29:44 2004
+++ ../install Wed Mar 3 06:58:30 2004
@@ -47,7 +47,7 @@
(define in-rpm-install? (getenv "RPM_INSTALL_PREFIX"))
(define in-rpm-build? (and (getenv "RPM_OPT_FLAGS") (not in-rpm-install?)))
+(define in-freebsd-port-build? #t)
(define plthome #f)
(define this-script #f)
-(define install-mode? #f)
+(define install-mode? #t)
(define check-version?
(if in-osx-install?
#f ;; until the version checker can work better with the GUI...
- (if (or in-rpm-install? in-rpm-build?)
+ (if (or in-freebsd-port-build? in-rpm-install? in-rpm-build?)
#f
(begin
(printf "Check for updates of PLT software over the Internet (y/n)? [y] ")
@@ -152,7 +153,8 @@
(check-version))
(define zo?
- (or in-rpm-install?
+ (or in-freebsd-port-build?
+ in-rpm-install?
in-osx-install?
(and (not in-rpm-build?)
(begin
(when (or (getenv "OSX_PLT_INSTALL") (getenv "RPM_INSTALL_PREFIX"))
(set! install-mode? #t))

File diff suppressed because it is too large Load Diff