From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7123815808B for ; Thu, 17 Mar 2022 21:32:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9EC97E07DB; Thu, 17 Mar 2022 21:32:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 81890E07DB for ; Thu, 17 Mar 2022 21:32:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5CE4B3434A6 for ; Thu, 17 Mar 2022 21:32:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A013C31A for ; Thu, 17 Mar 2022 21:32:24 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1647552730.7068127d8f8b4a36a38667578e72d0f72688e821.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea-sound/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/icedtea-sound/icedtea-sound-1.0.1-r1.ebuild X-VCS-Directories: dev-java/icedtea-sound/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 7068127d8f8b4a36a38667578e72d0f72688e821 X-VCS-Branch: master Date: Thu, 17 Mar 2022 21:32:24 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a1327ced-c57b-4ae2-af65-6be988211b41 X-Archives-Hash: 0226c0cb643e717814639c8f6dee83e3 commit: 7068127d8f8b4a36a38667578e72d0f72688e821 Author: Volkmar W. Pogatzki pogatzki net> AuthorDate: Thu Mar 17 11:08:38 2022 +0000 Commit: Sam James gentoo org> CommitDate: Thu Mar 17 21:32:10 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7068127d dev-java/icedtea-sound: EAPI 8, min java 1.8 Bug: https://bugs.gentoo.org/698580 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Volkmar W. Pogatzki pogatzki.net> Closes: https://github.com/gentoo/gentoo/pull/24620 Signed-off-by: Sam James gentoo.org> .../icedtea-sound/icedtea-sound-1.0.1-r1.ebuild | 43 ++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/dev-java/icedtea-sound/icedtea-sound-1.0.1-r1.ebuild b/dev-java/icedtea-sound/icedtea-sound-1.0.1-r1.ebuild new file mode 100644 index 000000000000..25e126249722 --- /dev/null +++ b/dev-java/icedtea-sound/icedtea-sound-1.0.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +# Build written by Andrew John Hughes (gnu_andrew@member.fsf.org) + +EAPI=8 + +inherit java-pkg-2 + +DESCRIPTION="Plugins for javax.sound" +HOMEPAGE="https://icedtea.classpath.org" +SRC_URI="https://icedtea.classpath.org/download/source/${P}.tar.xz" + +LICENSE="GPL-2-with-linking-exception" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" + +IUSE="+doc test" +RESTRICT="!test? ( test )" + +COMMON_DEP=" + virtual/jdk:1.8 + >=media-sound/pulseaudio-0.9.11:=" +RDEPEND="${COMMON_DEP}" +DEPEND="${COMMON_DEP}" +BDEPEND="app-arch/zip" + +pkg_setup() { + JAVA_PKG_WANT_SOURCE="1.8" + JAVA_PKG_WANT_TARGET="1.8" + + java-pkg-2_pkg_setup +} + +src_configure() { + econf --with-jdk-home="${JAVA_HOME}" \ + $(use_enable doc docs) \ + --htmldir="${EPREFIX}/usr/share/doc/${PF}/html" +} + +src_compile() { + default +}