1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Upgrade to v200.

Requested by:	Austus <austus@adelphia.net>
This commit is contained in:
Joseph Koshy 2002-07-24 08:48:05 +00:00
parent fe5f52c7ac
commit c54b080c8a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=63470
6 changed files with 2682 additions and 2082 deletions

View File

@ -6,11 +6,13 @@
#
PORTNAME= drscheme
PORTVERSION= 103p1
PORTVERSION= 200
CATEGORIES= lang
MASTER_SITES= http://www.cs.rice.edu/CS/PLT/packages/download/103p1/plt/ \
ftp://ftp.pasteur.fr/pub/computing/Scheme/DrScheme/103p1/plt/ \
ftp://archive.informatik.uni-tuebingen.de/unix/language/plt/103p1/plt/
MASTER_SITES= http://download.plt-scheme.org/bundles/200/plt/ \
http://www.cs.utah.edu/plt/download/200/plt/ \
ftp://ftp.pasteur.fr/pub/computing/Scheme/plt-scheme/200/plt/ \
ftp://archive.informatik.uni-tuebingen.de/unix/language/plt/200/plt/ \
ftp://morpheus.wish.com.mx/pub/plt/200/plt/
DISTNAME= plt.src.x
MAINTAINER= jkoshy@freebsd.org
@ -21,13 +23,13 @@ ALL_TARGET= all install
USE_XLIB= yes
PLTHOME= ${PREFIX}/drscheme
DRS_D= bin .bin install collects teachpack
DRS_B= drscheme drscheme-jr mred mzc mzscheme
MAN1= drscheme-jr.1 drscheme.1 mred.1 mzscheme.1
DRS_D= bin install collects teachpack
DRS_B= drscheme mred mzc mzscheme tex2page
MAN1= drscheme.1 mred.1 mzscheme.1
do-install:
${MKDIR} ${PLTHOME}
cd ${WRKDIR}/plt && ${TAR} -cf - ${DRS_D} | tar -C ${PLTHOME} -xvf -
cd ${WRKDIR}/plt && ${TAR} -cf - ${DRS_D} | tar -C ${PLTHOME} -xf -
cd ${PLTHOME} && ${PLTHOME}/install
.for f in ${DRS_B}
${LN} -s ${PLTHOME}/bin/$f ${PREFIX}/bin/$f

View File

@ -1 +1 @@
MD5 (plt.src.x.tar.gz) = a71f30878a1b43871c0c858d43ec8c44
MD5 (plt.src.x.tar.gz) = a23eeb0f907841cf6be928df083bd926

View File

@ -1,26 +0,0 @@
--- ../install-- Thu Jun 21 15:49:54 2001
+++ ../install Thu Jun 21 15:58:35 2001
@@ -134,21 +134,8 @@
checklink "MzScheme/MrEd/DrScheme" ".bin/sparc-sunos4-static" ".bin/sparc-solaris" "sparc-sunos4-static" "SunOS4 Static" "Solaris"
fi
-if [ -z "${RPM_INSTALL_PREFIX}" ] ; then
- echo 'PLT software starts up much faster with .zo files, but creating .zo'
- echo 'files now takes a few minutes and requires about 5MB of additional'
- echo 'disk space. Create .zo files later by running plt/bin/setup-plt.'
- echo -n ' Create .zo files now (y/n)? [y] '
- read response
-else
- response="y"
-fi
-if [ "$response" != 'n' ] ; then
- if [ "$response" != 'N' ] ; then
- didnothing=""
- bin/setup-plt
- fi
-fi
+didnothing=""
+bin/setup-plt
echo
echo "PLT installation done${didnothing}."

View File

@ -0,0 +1,26 @@
--- ../install-- Thu Jun 20 21:30:33 2002
+++ ../install Wed Jul 24 13:23:48 2002
@@ -138,11 +138,12 @@
(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 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

View File

@ -8,4 +8,4 @@ help system called Help Desk, available from the Help menu.
DrScheme Jr is a textual version of DrScheme that offers some of the
benefits of DrScheme, but without development tools or graphics.
WWW: http://www.cs.rice.edu/CS/PLT/packages/drscheme/
WWW: http://www.drscheme.org/

File diff suppressed because it is too large Load Diff