2
0
mirror of https://github.com/gentoo-mirror/gentoo.git synced 2026-01-18 00:10:27 +03:00
Files
gentoo/dev-java/xz-java/xz-java-1.5.ebuild
Repository QA checks a637bd65b7 2015-06-19 16:35:30 UTC
2015-06-19 12:38:33 -04:00

36 lines
871 B
Bash

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/xz-java/xz-java-1.5.ebuild,v 1.3 2015/04/19 09:43:25 pacho Exp $
EAPI=5
JAVA_PKG_IUSE="doc examples source"
inherit java-pkg-2 java-ant-2
DESCRIPTION="Implementation of xz data compression in pure java"
HOMEPAGE="http://tukaani.org/xz/java.html"
SRC_URI="http://tukaani.org/xz/${P}.zip"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="amd64 x86"
RDEPEND=">=virtual/jre-1.4"
DEPEND=">=virtual/jdk-1.4
app-arch/unzip"
EANT_DOC_TARGET="doc"
S=${WORKDIR}
java_prepare() {
epatch "${FILESDIR}"/${PN}-stop-fetching-external-files.patch
}
src_install() {
java-pkg_dojar build/jar/xz.jar
use doc && java-pkg_dojavadoc build/doc
use examples && java-pkg_doexamples src/*Demo.java
use source && java-pkg_dosrc src/org
}