From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- app-misc/jitac/Manifest | 1 + app-misc/jitac/jitac-0.3.0.ebuild | 44 +++++++++++++++++++++++++++++++++++++++ app-misc/jitac/metadata.xml | 5 +++++ 3 files changed, 50 insertions(+) create mode 100644 app-misc/jitac/Manifest create mode 100644 app-misc/jitac/jitac-0.3.0.ebuild create mode 100644 app-misc/jitac/metadata.xml (limited to 'app-misc/jitac') diff --git a/app-misc/jitac/Manifest b/app-misc/jitac/Manifest new file mode 100644 index 000000000000..aee8c009ffd8 --- /dev/null +++ b/app-misc/jitac/Manifest @@ -0,0 +1 @@ +DIST jitac-0.3.0.src.jar 141514 SHA256 83ec678cb805a3763683a1d6eba2ec4e949a54fbff71b925de50d193f7345569 SHA512 8a21e80246e450c9afb7e92cad14b8901fab7e039a7312df0b87cdab307c68a3db8a1090cb044b74c50eee47dd480f8c8d1465111e2f508584d38c9ef31511f8 WHIRLPOOL bbe0d05701a69d8735ff1bd1413f1b96385c3a48ac623b73f1ba5ea892127fc40912abb81fabb6d00f248d29ed107f690f7a287a1ead37a29efab95b76494c67 diff --git a/app-misc/jitac/jitac-0.3.0.ebuild b/app-misc/jitac/jitac-0.3.0.ebuild new file mode 100644 index 000000000000..1f3427746dbe --- /dev/null +++ b/app-misc/jitac/jitac-0.3.0.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit java-pkg-2 + +DESCRIPTION="An image to ASCII converter written in Java" +HOMEPAGE="http://www.roqe.org/jitac/" +SRC_URI="http://www.roqe.org/jitac/${P}.src.jar" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="amd64 ppc x86" +IUSE="doc" + +COMMON_DEP=" + dev-java/sun-jimi:0" +RDEPEND="${COMMON_DEP} + >=virtual/jre-1.5" +DEPEND="${COMMON_DEP} + >=virtual/jdk-1.5" + +S=${WORKDIR} + +src_unpack() { + jar -xvf "${DISTDIR}"/${A} || die "failed to unpack" +} + +src_compile() { + ejavac -classpath $(java-pkg_getjars sun-jimi):. $(find -name *.java) + find . -name "*.class" -or -name "*.bdf" \ + -or -name "*.properties" -or -name "README" \ + | xargs jar -cf ${PN}.jar || die "failed to create jar" +} + +src_install() { + java-pkg_dojar ${PN}.jar + java-pkg_dolauncher ${PN} --main org.roqe.jitac.Jitac + + dodoc org/roqe/jitac/README + use doc && java-pkg_dohtml -r org/roqe/jitac/docs/* +} diff --git a/app-misc/jitac/metadata.xml b/app-misc/jitac/metadata.xml new file mode 100644 index 000000000000..838c00a4a448 --- /dev/null +++ b/app-misc/jitac/metadata.xml @@ -0,0 +1,5 @@ + + + +java + -- cgit v1.2.3-65-gdbad