diff options
author | pav <pav@FreeBSD.org> | 2008-04-04 20:59:53 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2008-04-04 20:59:53 +0800 |
commit | 9e58a798f7f608443df310b73dcb5795caa168ee (patch) | |
tree | 8585e9fb9a3c2d2f9b812ec1832d89b1a0449f14 | |
parent | 6a5ac176efea0a5ee8c18c17547a1bf76bf54f95 (diff) | |
download | freebsd-ports-gnome-9e58a798f7f608443df310b73dcb5795caa168ee.tar.gz freebsd-ports-gnome-9e58a798f7f608443df310b73dcb5795caa168ee.tar.zst freebsd-ports-gnome-9e58a798f7f608443df310b73dcb5795caa168ee.zip |
- Adapt for new libffi, and various fixes
PR: ports/122399
Submitted by: Bjoern Koenig <bkoenig@alpha-tierchen.de> (maintainer)
-rw-r--r-- | java/sablevm/Makefile | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/java/sablevm/Makefile b/java/sablevm/Makefile index 603230613baf..ceae27ca526e 100644 --- a/java/sablevm/Makefile +++ b/java/sablevm/Makefile @@ -7,8 +7,8 @@ PORTNAME= sablevm PORTVERSION= 1.13 -PORTREVISION= 1 -CATEGORIES= java +PORTREVISION= 2 +CATEGORIES= java devel MASTER_SITES= SF MAINTAINER= bkoenig@alpha-tierchen.de @@ -20,9 +20,13 @@ LIB_DEPENDS= popt:${PORTSDIR}/devel/popt \ GNU_CONFIGURE= yes USE_AUTOTOOLS= libltdl USE_GMAKE= yes +USE_GETTEXT= yes +USE_ICONV= yes USE_LDCONFIG= yes -CONFIGURE_ENV= CFLAGS="-I${PREFIX}/include -L${PREFIX}/lib -I${LOCALBASE}/include -L${LOCALBASE}/lib" +USE_GNOME= pkgconfig +PKG_CONFIG?= ${LOCALBASE}/bin/pkg-config +CONFIGURE_ENV= CFLAGS="-I${LOCALBASE}/include `${PKG_CONFIG} libffi --cflags`" LDFLAGS="-L${LOCALBASE}/lib" OPTIONS= SVMCP "Install SableVM classpath" ON \ MAN "Build and install man pages" ON @@ -32,12 +36,11 @@ CONFLICTS= classpath-* .include <bsd.port.pre.mk> .if !defined(WITHOUT_SVMCP) -RUN_DEPENDS+= ${LOCALBASE}/share/sablevm-classpath/java/lang/Object.class:${PORTSDIR}/java/sablevm-classpath +RUN_DEPENDS+= ${LOCALBASE}/lib/sablevm-classpath/libjavalang.so:${PORTSDIR}/java/sablevm-classpath .endif .if !defined(WITHOUT_MAN) MAN1= java-sablevm.1 sablevm.1 -.else .endif post-extract: |