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 /app-misc/jitac | |
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 'app-misc/jitac')
-rw-r--r-- | app-misc/jitac/Manifest | 1 | ||||
-rw-r--r-- | app-misc/jitac/jitac-0.3.0.ebuild | 44 | ||||
-rw-r--r-- | app-misc/jitac/metadata.xml | 5 |
3 files changed, 50 insertions, 0 deletions
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 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>java</herd> +</pkgmetadata> |