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 EA1741384B4 for ; Wed, 23 Dec 2015 10:59:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3FA7221C0AF; Wed, 23 Dec 2015 10:59:30 +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 8005821C0AE for ; Wed, 23 Dec 2015 10:59:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id BBD6634087C for ; Wed, 23 Dec 2015 10:59:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 915CBCF1 for ; Wed, 23 Dec 2015 10:59:25 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1450868330.0dd30aa4c6a36cb2a5979e3b25dd7b94ab85228b.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrdao/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/cdrdao/cdrdao-1.2.3-r2.ebuild X-VCS-Directories: app-cdr/cdrdao/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 0dd30aa4c6a36cb2a5979e3b25dd7b94ab85228b X-VCS-Branch: master Date: Wed, 23 Dec 2015 10:59:25 +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: f5763778-9bba-4109-a8ed-cea8eaba594c X-Archives-Hash: ebaa7c8b066106fc3bc3806391ef90dc commit: 0dd30aa4c6a36cb2a5979e3b25dd7b94ab85228b Author: Pacho Ramos gentoo org> AuthorDate: Wed Dec 23 10:40:37 2015 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Wed Dec 23 10:58:50 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dd30aa4 app-cdr/cdrdao: Fix building with latest glibmm/libsigc++ Package-Manager: portage-2.2.26 app-cdr/cdrdao/cdrdao-1.2.3-r2.ebuild | 64 +++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) diff --git a/app-cdr/cdrdao/cdrdao-1.2.3-r2.ebuild b/app-cdr/cdrdao/cdrdao-1.2.3-r2.ebuild new file mode 100644 index 0000000..38ed303 --- /dev/null +++ b/app-cdr/cdrdao/cdrdao-1.2.3-r2.ebuild @@ -0,0 +1,64 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit eutils flag-o-matic + +DESCRIPTION="Burn CDs in disk-at-once mode -- with optional GUI frontend" +HOMEPAGE="http://cdrdao.sourceforge.net/" +if [[ ${PV/*_rc*} ]] +then + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" +else + SRC_URI="http://www.poolshark.org/src/${P/_}.tar.bz2" +fi + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="gcdmaster encode mad vorbis" + +RDEPEND="virtual/cdrtools + encode? ( >=media-sound/lame-3.99 ) + gcdmaster? ( + >=dev-libs/libsigc++-2.6:2 + >=dev-cpp/gtkmm-2.4:2.4 + >=dev-cpp/libgnomeuimm-2.6:2.6 + media-libs/libao + ) + mad? ( + media-libs/libmad + media-libs/libao + ) + vorbis? ( + media-libs/libvorbis + media-libs/libao + ) + !app-cdr/cue2toc + !dev-util/pccts" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +S=${WORKDIR}/${P/_} + +src_prepare() { + epatch "${FILESDIR}"/${P}-glibc212.patch +} + +src_configure() { + # Fix building with latest libsigc++ + append-cxxflags -std=c++11 + find -name '*.h' -exec sed -i '/sigc++\/object.h/d' {} + || die + + econf \ + $(use_with gcdmaster xdao) \ + $(use_with vorbis ogg-support) \ + $(use_with mad mp3-support) \ + $(use_with encode lame) +} + +src_install() { + default + dodoc AUTHORS ChangeLog CREDITS NEWS README{,.PlexDAE} +}