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 0D0681382C5 for ; Mon, 12 Feb 2018 19:12:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 302BAE09F2; Mon, 12 Feb 2018 19:12:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 12E03E09F2 for ; Mon, 12 Feb 2018 19:12:38 +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 40B62335C03 for ; Mon, 12 Feb 2018 19:12:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 923901FE for ; Mon, 12 Feb 2018 19:12:35 +0000 (UTC) From: "Daniel Pielmeier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Daniel Pielmeier" Message-ID: <1518462743.55b96c727287728374a11de48028112417dbded5.billie@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libburn/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libburn/libburn-1.4.8-r2.ebuild X-VCS-Directories: dev-libs/libburn/ X-VCS-Committer: billie X-VCS-Committer-Name: Daniel Pielmeier X-VCS-Revision: 55b96c727287728374a11de48028112417dbded5 X-VCS-Branch: master Date: Mon, 12 Feb 2018 19:12:35 +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: 97ced33f-09e3-4465-a8c5-5222ef120b0e X-Archives-Hash: 77e9203b200dccf2c36e193eb70bb1d2 commit: 55b96c727287728374a11de48028112417dbded5 Author: Daniel Pielmeier gentoo org> AuthorDate: Mon Feb 12 19:11:59 2018 +0000 Commit: Daniel Pielmeier gentoo org> CommitDate: Mon Feb 12 19:12:23 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55b96c72 dev-libs/libburn: Revision bump. Remove the track-src-odirect USE flag. This flag causes burn failures when reading from a data file. More information at https://bugs.kde.org/show_bug.cgi?id=257602 Package-Manager: Portage-2.3.19, Repoman-2.3.6 RepoMan-Options: --force dev-libs/libburn/libburn-1.4.8-r2.ebuild | 37 ++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/dev-libs/libburn/libburn-1.4.8-r2.ebuild b/dev-libs/libburn/libburn-1.4.8-r2.ebuild new file mode 100644 index 00000000000..e18746798c9 --- /dev/null +++ b/dev-libs/libburn/libburn-1.4.8-r2.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Open-source library for reading, mastering and writing optical discs" +HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wikis/home" +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86" +IUSE="debug static-libs" + +RDEPEND="" +DEPEND="$RDEPEND + virtual/pkgconfig" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --disable-ldconfig-at-install \ + $(use_enable debug) +} + +src_install() { + default + + dodoc CONTRIBUTORS doc/{comments,*.txt} + + docinto cdrskin + dodoc cdrskin/{*.txt,README} + docinto cdrskin/html + dodoc cdrskin/cdrskin_eng.html + + find "${D}" -name '*.la' -delete || die +}