diff options
author | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-04-28 00:09:46 +0000 |
---|---|---|
committer | Karl Trygve Kalleberg <karltk@gentoo.org> | 2004-04-28 00:09:46 +0000 |
commit | 4139fa4eccd123ec56a0b32aee6ab462a7353577 (patch) | |
tree | 5c8709a6d9d9b2df333b87f066dd9c69270cdf8b /dev-java/gnu-activation | |
parent | Moving dev-java/activation to dev-java/gnu-activation (Manifest recommit) (diff) | |
download | gentoo-2-4139fa4eccd123ec56a0b32aee6ab462a7353577.tar.gz gentoo-2-4139fa4eccd123ec56a0b32aee6ab462a7353577.tar.bz2 gentoo-2-4139fa4eccd123ec56a0b32aee6ab462a7353577.zip |
Moving dev-java/activation to dev-java/gnu-activation
Diffstat (limited to 'dev-java/gnu-activation')
-rw-r--r-- | dev-java/gnu-activation/ChangeLog | 18 | ||||
-rw-r--r-- | dev-java/gnu-activation/files/digest-gnu-activation-20040331 | 1 | ||||
-rw-r--r-- | dev-java/gnu-activation/gnu-activation-20040331.ebuild | 32 | ||||
-rw-r--r-- | dev-java/gnu-activation/metadata.xml | 23 |
4 files changed, 74 insertions, 0 deletions
diff --git a/dev-java/gnu-activation/ChangeLog b/dev-java/gnu-activation/ChangeLog new file mode 100644 index 000000000000..4a09be1a8717 --- /dev/null +++ b/dev-java/gnu-activation/ChangeLog @@ -0,0 +1,18 @@ +# ChangeLog for dev-java/activation +# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed unde the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-activation/ChangeLog,v 1.1 2004/04/28 00:07:29 karltk Exp $ + +*gnu-activation-20040331 (28 Apr 2004) + + 281 Apr 2004; Karl Trygve Kalleberg <karltk@gentoo.org> + activation-20040331.ebuild: Moved over from dev-java/activation + + 19 Apr 2004; Robin Johnson,,604-339-5621,604-298-8414 <robbat2@gentoo.org> + activation-20040331.ebuild: + not parallel build safe + +*activation-20040331 (01 Apr 2004) + + 01 Apr 2004; Karl Trygve Kalleberg <karltk@gentoo.org> + activation-20040331.ebuild: Initial import. Ebuild submitted by + myself. No joke. diff --git a/dev-java/gnu-activation/files/digest-gnu-activation-20040331 b/dev-java/gnu-activation/files/digest-gnu-activation-20040331 new file mode 100644 index 000000000000..e37e0ea2e0a2 --- /dev/null +++ b/dev-java/gnu-activation/files/digest-gnu-activation-20040331 @@ -0,0 +1 @@ +MD5 2a26cff9f2b2e8bae0be8e876377e2cd activation-20040331-gentoo.tar.bz2 80708 diff --git a/dev-java/gnu-activation/gnu-activation-20040331.ebuild b/dev-java/gnu-activation/gnu-activation-20040331.ebuild new file mode 100644 index 000000000000..ce4eb263b268 --- /dev/null +++ b/dev-java/gnu-activation/gnu-activation-20040331.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-java/gnu-activation/gnu-activation-20040331.ebuild,v 1.1 2004/04/28 00:07:29 karltk Exp $ + +inherit java-pkg + +DESCRIPTION="GNU implementation of the Java Activation Framework" +HOMEPAGE="http://www.gnu.org/software/classpathx/jaf/" +SRC_URI="http://www.gentoo.org/~karltk/java/distfiles/activation-20040331-gentoo.tar.bz2" +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~x86" +IUSE="doc" +RDEPEND=">=virtual/jre-1.4" +DEPEND=">=virtual/jdk-1.4" + +src_compile() { + econf || die + # package fails in parallel builds + MAKEOPTS="-j1" emake || die + if use doc ; then + MAKEOPTS="-j1" emake javadoc || die + fi +} + +src_install() { + java-pkg_dojar activation.jar + + dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README + use doc && dohtml -r docs/* +} + diff --git a/dev-java/gnu-activation/metadata.xml b/dev-java/gnu-activation/metadata.xml new file mode 100644 index 000000000000..8826ab18fa5c --- /dev/null +++ b/dev-java/gnu-activation/metadata.xml @@ -0,0 +1,23 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> + +<pkgmetadata> +<herd>java</herd> + +<longdescription> +GNU JAF is a framework for declaring what beans operate on what MIME +type data. Content handler beans can be defined to handle particular +MIME content. The JAF unites internet standards for declaring content +with JavaBeans(tm). + +The JAF defines two mechanisms within the framework. The first, the file +type map, specifies the MIME content type for a given file. The default +implementation of this uses the UNIX mime.types format to map filename +extensions to MIME types. The second mechanism, the command map, +specifies the actions that can be applied to a given MIME content type. +The default implementation of this uses the standard mailcap format to +map actions to JavaBean(tm) classes. These beans can then view, +edit, print, or perform whatever other action is required on the +underlying resource. +</longdescription> +</pkgmetadata> |