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 EAA1C13835C for ; Sat, 13 Feb 2021 22:52:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 33FD2E08E0; Sat, 13 Feb 2021 22:52:44 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 D1689E08FA for ; Sat, 13 Feb 2021 22:52:44 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 D573434081F for ; Sat, 13 Feb 2021 22:52:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E76F64F3 for ; Sat, 13 Feb 2021 22:52:39 +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: <1613256720.4129259d8f3fc0c21c4ae5ce8aed47e689902d53.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/bristol/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/bristol/bristol-0.60.11-r1.ebuild media-sound/bristol/bristol-0.60.11-r2.ebuild X-VCS-Directories: media-sound/bristol/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 4129259d8f3fc0c21c4ae5ce8aed47e689902d53 X-VCS-Branch: master Date: Sat, 13 Feb 2021 22:52:39 +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: 0dbb605c-67ad-4452-be53-87c351670ab8 X-Archives-Hash: 851dd20a704b999715d31eaa16041894 commit: 4129259d8f3fc0c21c4ae5ce8aed47e689902d53 Author: Jakov Smolic sartura hr> AuthorDate: Sat Feb 13 22:52:00 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Sat Feb 13 22:52:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4129259d media-sound/bristol: add-flags -> append-cflags; drop static-libs Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> ...0.60.11-r1.ebuild => bristol-0.60.11-r2.ebuild} | 23 ++++++++++------------ 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/media-sound/bristol/bristol-0.60.11-r1.ebuild b/media-sound/bristol/bristol-0.60.11-r2.ebuild similarity index 78% rename from media-sound/bristol/bristol-0.60.11-r1.ebuild rename to media-sound/bristol/bristol-0.60.11-r2.ebuild index a98b921d23d..e5481dc9adb 100644 --- a/media-sound/bristol/bristol-0.60.11-r1.ebuild +++ b/media-sound/bristol/bristol-0.60.11-r2.ebuild @@ -12,25 +12,20 @@ SRC_URI="mirror://sourceforge/bristol/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="amd64 x86" -IUSE="alsa oss static-libs" +IUSE="alsa oss" # osc : configure option but no code it seems... # jack: fails to build if disabled # pulseaudio: not fully supported BDEPEND=" - virtual/pkgconfig -" + virtual/pkgconfig" RDEPEND=" virtual/jack x11-libs/libX11 - alsa? ( media-libs/alsa-lib ) -" + alsa? ( media-libs/alsa-lib )" # osc? ( >=media-libs/liblo-0.22 ) DEPEND="${RDEPEND} - x11-base/xorg-proto -" - -DOCS=( AUTHORS ChangeLog HOWTO NEWS README ) + x11-base/xorg-proto" PATCHES=( "${FILESDIR}"/${P}-cflags.patch @@ -45,12 +40,12 @@ src_prepare() { } src_configure() { - add-flags -fcommon + append-cflags -fcommon econf \ + --disable-static \ --disable-version-check \ $(use_enable alsa) \ - $(use_enable oss) \ - $(use_enable static-libs static) + $(use_enable oss) } src_compile() { @@ -59,5 +54,7 @@ src_compile() { src_install() { default - find "${D}" -name '*.la' -delete || die + dodoc HOWTO + + find "${ED}" -name '*.la' -delete || die }