diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-util/jarwizard | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-util/jarwizard')
-rw-r--r-- | dev-util/jarwizard/Manifest | 1 | ||||
-rw-r--r-- | dev-util/jarwizard/jarwizard-2.50.ebuild | 29 | ||||
-rw-r--r-- | dev-util/jarwizard/metadata.xml | 8 |
3 files changed, 38 insertions, 0 deletions
diff --git a/dev-util/jarwizard/Manifest b/dev-util/jarwizard/Manifest new file mode 100644 index 000000000000..86306fb3f48e --- /dev/null +++ b/dev-util/jarwizard/Manifest @@ -0,0 +1 @@ +DIST jarwizard_250_src.zip 169540 SHA256 0f32f4d0e817674929d03cdb2e33c4c7dee8418ccbf8ef9dfb4266c068d39645 SHA512 8d40cecd339e8e50b58c2c78a3c53b712275d95393d8ace4799b55a7f66f6e2a4bfd3348f92d6022d1d48c6edf17117c2b1bb1defc55e73fbdcf541907eeef1f WHIRLPOOL 172bd8098a0860b89318f0672011d3052c9e16312bdb3d47ea0623d18bc824fd3257fa02c9ade316b95109d2cfebd0440b99554fda11c456a022f971d968d646 diff --git a/dev-util/jarwizard/jarwizard-2.50.ebuild b/dev-util/jarwizard/jarwizard-2.50.ebuild new file mode 100644 index 000000000000..73df40ea5701 --- /dev/null +++ b/dev-util/jarwizard/jarwizard-2.50.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +inherit java-pkg-2 java-ant-2 + +DESCRIPTION="Takes the hassle out of creating executable JAR files for your Java programs" +SRC_URI="mirror://sourceforge/jarwizard/${PN}_${PV/./}_src.zip" +HOMEPAGE="http://sourceforge.net/projects/jarwizard/" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~amd64 ~ppc x86" +DEPEND=">=virtual/jdk-1.5 + app-arch/unzip" +RDEPEND=">=virtual/jre-1.5" + +IUSE="" + +S="${WORKDIR}/${PN}" + +src_unpack() { + unpack ${A} + java-ant_bsfix_one "${S}/nbproject/build-impl.xml" +} + +src_install() { + java-pkg_dojar dist/*.jar + java-pkg_dolauncher ${PN} --main JarWizard +} diff --git a/dev-util/jarwizard/metadata.xml b/dev-util/jarwizard/metadata.xml new file mode 100644 index 000000000000..1613b38b18cb --- /dev/null +++ b/dev-util/jarwizard/metadata.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>java</herd> + <upstream> + <remote-id type="sourceforge">jarwizard</remote-id> + </upstream> +</pkgmetadata> |