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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8BEA91396D9 for ; Wed, 15 Nov 2017 15:25:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98CDEE0C5C; Wed, 15 Nov 2017 15:25:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7853AE0C5C for ; Wed, 15 Nov 2017 15:25:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3C9D833BF24 for ; Wed, 15 Nov 2017 15:25:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EE339BA5 for ; Wed, 15 Nov 2017 15:25:20 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1510759507.2dd89bebd8a6ffb5dfb74d9dc2cc13c014bc4707.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/adplug/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/adplug/adplug-9999.ebuild X-VCS-Directories: media-libs/adplug/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 2dd89bebd8a6ffb5dfb74d9dc2cc13c014bc4707 X-VCS-Branch: master Date: Wed, 15 Nov 2017 15:25:20 +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: 27039e99-b835-4ebf-b04a-4a48e5ba6120 X-Archives-Hash: 5d3482af61d355378781deef4ee4c265 commit: 2dd89bebd8a6ffb5dfb74d9dc2cc13c014bc4707 Author: David Seifert gentoo org> AuthorDate: Tue Nov 14 16:30:41 2017 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Nov 15 15:25:07 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dd89beb media-libs/adplug: Add live ebuild Package-Manager: Portage-2.3.13, Repoman-2.3.4 media-libs/adplug/adplug-9999.ebuild | 39 ++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) diff --git a/media-libs/adplug/adplug-9999.ebuild b/media-libs/adplug/adplug-9999.ebuild new file mode 100644 index 00000000000..b44d43a3eae --- /dev/null +++ b/media-libs/adplug/adplug-9999.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="A free, cross-platform, hardware independent AdLib sound player library" +HOMEPAGE="http://adplug.sourceforge.net" + +if [[ ${PV} == *9999 ]]; then + inherit autotools git-r3 + EGIT_REPO_URI="https://github.com/adplug/adplug.git" +else + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86" +fi + +LICENSE="LGPL-2.1" +SLOT="0" +IUSE="debug static-libs" + +RDEPEND=">=dev-cpp/libbinio-1.4" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + default + [[ ${PV} == *9999 ]] && eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) \ + $(use_enable debug) +} + +src_install() { + default + find "${D}" -name '*.la' -delete || die +}