1
0
forked from ports/contrib

jamvm: deleted unmaintained port

This commit is contained in:
Tim Biermann 2021-03-08 19:26:32 +00:00
parent 97af67fa99
commit 5148af00e3
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 0 additions and 49 deletions

View File

@ -1,14 +0,0 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/jamvm
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/jamvm/
-rw-r--r-- root/root usr/include/jamvm/jni.h
drwxr-xr-x root/root usr/lib/
-rwxr-xr-x root/root usr/lib/libjvm.la
lrwxrwxrwx root/root usr/lib/libjvm.so -> libjvm.so.0.0.0
lrwxrwxrwx root/root usr/lib/libjvm.so.0 -> libjvm.so.0.0.0
-rwxr-xr-x root/root usr/lib/libjvm.so.0.0.0
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/jamvm/
-rw-r--r-- root/root usr/share/jamvm/classes.zip

View File

@ -1,5 +0,0 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3+jACpJNcPPME6z6KUeMzAzR0YAPzdQr8eKT0YvnhwRrhc7gNJ9X2LxHWsjjHm8RW8CLJJ6X5zKN1WBsrSn9rwU=
SHA256 (Pkgfile) = a0df8804c8d1c9e67bd139df91a875066174eea9f9aa2ea96de944eb4abde5c4
SHA256 (.footprint) = ce28da158908efd7584e7795b24c5168632d55c664a878584b17eaaf971d0cc6
SHA256 (jamvm-2.0.0.tar.gz) = 76428e96df0ae9dd964c7a7c74c1e9a837e2f312c39e9a357fa8178f7eff80da

View File

@ -1,30 +0,0 @@
# Description: Extremely small and JVM spec 2 (blue book) conformant Java Virtual Machine
# URL: http://jamvm.sourceforge.net/
# Maintainer: John Vogel, jvogel4 at stny dot rr dot com
# Depends on: libffi
name=jamvm
version=2.0.0
release=1
source=(http://download.sourceforge.net/$name/$name/JamVM%20$version/$name-$version.tar.gz)
build() {
find $name-$version ! -type l -a \( -perm /go+w -o ! -perm /u+rw \) \
-exec chmod go-w,u+rw {} \;
cd $name-$version
./configure \
--prefix=/usr \
--includedir=/usr/include/$name \
--enable-libffi \
--with-classpath-install-dir=/usr
make
make DESTDIR=$PKG install
rm $PKG/usr/lib/rt.jar
mv $PKG/usr/lib/libjvm.so{,.0.0.0}
ln -s libjvm.so.0.0.0 $PKG/usr/lib/libjvm.so
ln -s libjvm.so.0.0.0 $PKG/usr/lib/libjvm.so.0
}