Update to jacal-1b9.
Update HOMEPAGE and MASTER_SITES. More specific license marker. portswise ok, jasper@ "if it works...", espie@
This commit is contained in:
parent
27d5794352
commit
603dd41690
@ -1,19 +1,18 @@
|
||||
# $OpenBSD: Makefile,v 1.3 2008/01/04 17:48:36 espie Exp $
|
||||
# $OpenBSD: Makefile,v 1.4 2009/01/21 18:31:42 kili Exp $
|
||||
|
||||
COMMENT= symbolics math system
|
||||
|
||||
CATEGORIES= math
|
||||
|
||||
V=1b5
|
||||
DISTNAME= jacal$V
|
||||
PKGNAME= jacal-$V
|
||||
DISTNAME= jacal-1b9
|
||||
EXTRACT_SUFX= .zip
|
||||
|
||||
HOMEPAGE= http://swissnet.ai.mit.edu/~jaffer/SCM.html
|
||||
HOMEPAGE= http://people.csail.mit.edu/jaffer/JACAL
|
||||
|
||||
MASTER_SITES= ftp://ftp.swiss.ai.mit.edu/pub/scm/
|
||||
MASTER_SITES= http://groups.csail.mit.edu/mac/ftpdir/scm/ \
|
||||
http://groups.csail.mit.edu/mac/ftpdir/scm/OLD/
|
||||
|
||||
# GPL
|
||||
# GPLv3
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
|
@ -1,5 +1,5 @@
|
||||
MD5 (jacal1b5.zip) = zWXQqxbKmhCgZc2vgXJLmw==
|
||||
RMD160 (jacal1b5.zip) = zWwnkZtIKyfXSGtdmeveNuVZAZI=
|
||||
SHA1 (jacal1b5.zip) = 2uUxtw6vA54FXaFmQB1+WPB9agc=
|
||||
SHA256 (jacal1b5.zip) = upkHy49U/JLqSNSWDS3/Xd5ao2nO+jMufCWXbhr6osc=
|
||||
SIZE (jacal1b5.zip) = 246930
|
||||
MD5 (jacal-1b9.zip) = wFoZMxf2tHZbMP3Xtx7COg==
|
||||
RMD160 (jacal-1b9.zip) = Fm5l2peZov8FhNGSMJ8ppxSwBJE=
|
||||
SHA1 (jacal-1b9.zip) = 65m9YXO7SzkIxV/Njn+YArgb9Vc=
|
||||
SHA256 (jacal-1b9.zip) = a9tWDUsgMwXv54G1SO3qxlY8Ec0CDHmKH2xu6E2p1Zw=
|
||||
SIZE (jacal-1b9.zip) = 270544
|
||||
|
@ -1,45 +1,14 @@
|
||||
$OpenBSD: patch-Makefile,v 1.1.1.1 2005/10/30 11:13:25 espie Exp $
|
||||
--- Makefile.orig Sun Oct 30 11:39:54 2005
|
||||
+++ Makefile Sun Oct 30 11:40:32 2005
|
||||
@@ -71,25 +71,25 @@ $(infodir)jacal.info.gz: $(infodir)jacal
|
||||
gzip -f $(infodir)jacal.info
|
||||
|
||||
pinstall: jacal.1
|
||||
- test -d $(mandir) || mkdir $(mandir)
|
||||
- test -d $(man1dir) || mkdir $(man1dir)
|
||||
- -cp jacal.1 $(man1dir)
|
||||
- test -d $(libdir) || mkdir $(libdir)
|
||||
- test -d $(JACALLIB) || mkdir $(JACALLIB)
|
||||
- -cp $(sfiles) $(cfiles) $(gfiles) jacalcat Makefile COPYING HELP $(JACALLIB)
|
||||
+ test -d $(DESTDIR)$(mandir) || mkdir $(DESTDIR)$(mandir)
|
||||
+ test -d $(DESTDIR)$(man1dir) || mkdir $(DESTDIR)$(man1dir)
|
||||
+ -cp jacal.1 $(DESTDIR)$(man1dir)
|
||||
+ test -d $(DESTDIR)$(libdir) || mkdir $(DESTDIR)$(libdir)
|
||||
+ test -d $(DESTDIR)$(JACALLIB) || mkdir $(DESTDIR)$(JACALLIB)
|
||||
+ -cp $(sfiles) $(cfiles) $(gfiles) jacalcat Makefile COPYING HELP $(DESTDIR)$(JACALLIB)
|
||||
|
||||
install: pinstall
|
||||
- echo "(use-modules (ice-9 slib))" > $(JACALLIB)guile.scm
|
||||
- echo "(slib:load \"$(JACALLIB)math\")" >> $(JACALLIB)guile.scm
|
||||
- echo "(math)" >> $(JACALLIB)guile.scm
|
||||
- echo "(slib:load \"$(JACALLIB)math\")" > $(JACALLIB)go.scm
|
||||
- echo "(math)" >> $(JACALLIB)go.scm
|
||||
+ echo "(use-modules (ice-9 slib))" > $(DESTDIR)$(JACALLIB)guile.scm
|
||||
+ echo "(slib:load \"$(JACALLIB)math\")" >> $(DESTDIR)$(JACALLIB)guile.scm
|
||||
+ echo "(math)" >> $(DESTDIR)$(JACALLIB)guile.scm
|
||||
+ echo "(slib:load \"$(JACALLIB)math\")" > $(DESTDIR)$(JACALLIB)go.scm
|
||||
+ echo "(math)" >> $(DESTDIR)$(JACALLIB)go.scm
|
||||
test -d $(bindir) || mkdir $(bindir)
|
||||
- echo '#! /bin/sh' > $(bindir)jacal
|
||||
- echo JACALDIR=$(JACALLIB) >> $(bindir)jacal
|
||||
- echo VERSION=$(VERSION) >> $(bindir)jacal
|
||||
- cat jacal.sh >> $(bindir)jacal
|
||||
- chmod +x $(bindir)jacal
|
||||
+ echo '#! /bin/sh' > $(DESTDIR)$(bindir)jacal
|
||||
+ echo JACALDIR=$(JACALLIB) >> $(DESTDIR)$(bindir)jacal
|
||||
+ echo VERSION=$(VERSION) >> $(DESTDIR)$(bindir)jacal
|
||||
+ cat jacal.sh >> $(DESTDIR)$(bindir)jacal
|
||||
+ chmod +x $(DESTDIR)$(bindir)jacal
|
||||
|
||||
uninstall:
|
||||
-rm $(bindir)jacal
|
||||
$OpenBSD: patch-Makefile,v 1.2 2009/01/21 18:31:42 kili Exp $
|
||||
--- Makefile.orig Sun Feb 3 23:00:03 2008
|
||||
+++ Makefile Sat Nov 29 19:19:28 2008
|
||||
@@ -77,9 +77,7 @@ install: pinstall
|
||||
echo "(math)" >> $(DESTDIR)$(jacallibdir)go.scm
|
||||
mkdir -p $(DESTDIR)$(bindir)
|
||||
echo '#! /bin/sh' > $(DESTDIR)$(bindir)jacal
|
||||
- grep -h ^SCHEME_LIBRARY_PATH= `which slib` >> $(DESTDIR)$(bindir)jacal
|
||||
- echo export SCHEME_LIBRARY_PATH >> $(DESTDIR)$(bindir)jacal
|
||||
- echo JACALDIR=$(DESTDIR)$(jacallibdir) >> $(DESTDIR)$(bindir)jacal
|
||||
+ echo JACALDIR=$(jacallibdir) >> $(DESTDIR)$(bindir)jacal
|
||||
echo VERSION=$(VERSION) >> $(DESTDIR)$(bindir)jacal
|
||||
cat jacal.sh >> $(DESTDIR)$(bindir)jacal
|
||||
chmod +x $(DESTDIR)$(bindir)jacal
|
||||
|
@ -1,4 +1,4 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2005/10/30 11:13:25 espie Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2009/01/21 18:31:42 kili Exp $
|
||||
bin/jacal
|
||||
@info info/jacal.info
|
||||
lib/jacal/
|
||||
@ -16,7 +16,6 @@ lib/jacal/ff.scm
|
||||
lib/jacal/func.scm
|
||||
lib/jacal/go.scm
|
||||
lib/jacal/grammar.scm
|
||||
lib/jacal/guile.scm
|
||||
lib/jacal/hensel.scm
|
||||
lib/jacal/hist.scm
|
||||
lib/jacal/info.scm
|
||||
|
Loading…
Reference in New Issue
Block a user