diff options
author | jmmv <jmmv@pkgsrc.org> | 2004-07-04 15:24:46 +0000 |
---|---|---|
committer | jmmv <jmmv@pkgsrc.org> | 2004-07-04 15:24:46 +0000 |
commit | ca77a3794aa72ceed1d029611981eb5bd7bfb4e4 (patch) | |
tree | 44434e71654dc6790060913aa7c1c7fdaf9f9c3a /lang/kaffe-esound | |
parent | a9c8fe17cc9f93f86d0c0d10c91f769ee82b3579 (diff) | |
download | pkgsrc-ca77a3794aa72ceed1d029611981eb5bd7bfb4e4.tar.gz |
Rework the way the kaffe packages work:
- Make kaffe the main package, on which others can depend, and which has no
support for things like sound nor graphics. Bump its revision to 2.
While here, do some cleanup too.
- Add a kaffe-x11 package, that installs on top of kaffe, and which provides
the library needed for AWT support through X11.
- Add a kaffe-esound package, that installs on top of kaffe, and which provides
the library needed for sound support through esound (i.e., no more need for
the USE_ESOUND variable here).
- Remove the kaffe-nox11 package.
Diffstat (limited to 'lang/kaffe-esound')
-rw-r--r-- | lang/kaffe-esound/DESCR | 5 | ||||
-rw-r--r-- | lang/kaffe-esound/Makefile | 21 | ||||
-rw-r--r-- | lang/kaffe-esound/PLIST | 6 |
3 files changed, 32 insertions, 0 deletions
diff --git a/lang/kaffe-esound/DESCR b/lang/kaffe-esound/DESCR new file mode 100644 index 00000000000..db2b18d0844 --- /dev/null +++ b/lang/kaffe-esound/DESCR @@ -0,0 +1,5 @@ +Kaffe is a clean room implementation of Java virtual machine plus associated +class libraries needed to provide a Java runtime environment. + +This package provides a plugin which enables sound support through the +Enlightened Sound Daemon (esd, for short). diff --git a/lang/kaffe-esound/Makefile b/lang/kaffe-esound/Makefile new file mode 100644 index 00000000000..453c83d3ae9 --- /dev/null +++ b/lang/kaffe-esound/Makefile @@ -0,0 +1,21 @@ +# $NetBSD: Makefile,v 1.1 2004/07/04 15:24:46 jmmv Exp $ +# + +.include "../../lang/kaffe/Makefile.common" + +PKGNAME= ${DISTNAME:S/kaffe/kaffe-esound/} + +COMMENT+= (sound support through esound) + +CONFIGURE_ARGS:= ${CONFIGURE_ARGS:S/--without-esd/--with-esd/} + +BUILD_DIRS= ${WRKSRC}/config +BUILD_DIRS+= ${WRKSRC}/include +BUILD_DIRS+= ${WRKSRC}/libraries/extensions/sound/esd +INSTALL_DIRS= ${WRKSRC}/libraries/extensions/sound/esd + +PRINT_PLIST_AWK+= /^@dirrm/ { print "@comment in kaffe: " $$0; next; } + +.include "../../audio/esound/buildlink3.mk" +.include "../../lang/kaffe/buildlink3.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/lang/kaffe-esound/PLIST b/lang/kaffe-esound/PLIST new file mode 100644 index 00000000000..4cba367ce56 --- /dev/null +++ b/lang/kaffe-esound/PLIST @@ -0,0 +1,6 @@ +@comment $NetBSD: PLIST,v 1.1 2004/07/04 15:24:46 jmmv Exp $ +java/kaffe/jre/lib/${MACHINE_ARCH}/libtritonusesd-${PKGVERSION}.so +java/kaffe/jre/lib/${MACHINE_ARCH}/libtritonusesd.a +java/kaffe/jre/lib/${MACHINE_ARCH}/libtritonusesd.la +java/kaffe/jre/lib/${MACHINE_ARCH}/libtritonusesd.so +@comment in kaffe: @dirrm java/kaffe/jre/lib/${MACHINE_ARCH} |