From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 82CB71388BF for ; Sat, 20 Feb 2016 01:14:54 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 76E9221C0E6; Sat, 20 Feb 2016 01:14:52 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D4C7521C005 for ; Sat, 20 Feb 2016 01:14:51 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8511340E9F for ; Sat, 20 Feb 2016 01:14:50 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3074016C3 for ; Sat, 20 Feb 2016 01:14:48 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1455930725.eb4bbed007d82502dba4e1a36181adc23ab69be3.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jzlib/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/jzlib/jzlib-1.0.7-r2.ebuild X-VCS-Directories: dev-java/jzlib/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: eb4bbed007d82502dba4e1a36181adc23ab69be3 X-VCS-Branch: master Date: Sat, 20 Feb 2016 01:14:48 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8123f795-44ec-473e-9bbd-b9922398048f X-Archives-Hash: 4c547379a0e7e673b59fcffc0a63b379 commit: eb4bbed007d82502dba4e1a36181adc23ab69be3 Author: Patrice Clement gentoo org> AuthorDate: Sat Feb 20 00:27:19 2016 +0000 Commit: Patrice Clement gentoo org> CommitDate: Sat Feb 20 01:12:05 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb4bbed0 dev-java/jzlib: EAPI 5 bump. Switch to java-pkg-simple. Package-Manager: portage-2.2.26 dev-java/jzlib/jzlib-1.0.7-r2.ebuild | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/dev-java/jzlib/jzlib-1.0.7-r2.ebuild b/dev-java/jzlib/jzlib-1.0.7-r2.ebuild new file mode 100644 index 0000000..2109d3e --- /dev/null +++ b/dev-java/jzlib/jzlib-1.0.7-r2.ebuild @@ -0,0 +1,35 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +JAVA_PKG_IUSE="doc source examples" + +inherit java-pkg-2 java-pkg-simple + +DESCRIPTION="JZlib is a re-implementation of zlib in pure Java" +HOMEPAGE="http://www.jcraft.com/jzlib/" +SRC_URI="http://www.jcraft.com/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris" +IUSE="" + +RDEPEND=" + >=virtual/jre-1.6" + +DEPEND=" + app-arch/unzip + >=virtual/jdk-1.6" + +S="${WORKDIR}/${P}" + +JAVA_SRC_DIR="com" + +src_install() { + java-pkg-simple_src_install + dodoc README ChangeLog + use examples && java-pkg_doexamples example +}