diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-29 09:51:00 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2018-11-29 09:51:00 +0100 |
commit | a784344d55a7d09e712ab99db3e92da1f94bc386 (patch) | |
tree | 382fe6b4b2ccf2d2df9bc3644daaa8c1ec86d680 /app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild | |
parent | x11-wm/i3: Use current musl patch for live ebuild (diff) | |
download | gentoo-a784344d55a7d09e712ab99db3e92da1f94bc386.tar.gz gentoo-a784344d55a7d09e712ab99db3e92da1f94bc386.tar.bz2 gentoo-a784344d55a7d09e712ab99db3e92da1f94bc386.zip |
app-cdr/cdrdao: Drop 1.2.3-r4
Package-Manager: Portage-2.3.52, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild')
-rw-r--r-- | app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild b/app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild deleted file mode 100644 index cc00a1346b4d..000000000000 --- a/app-cdr/cdrdao/cdrdao-1.2.3-r4.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools 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 ~arm64 hppa ia64 ppc ppc64 ~sh sparc x86 ~x86-fbsd" -IUSE="encode mad vorbis" - -COMMON_DEPEND=" - virtual/cdrtools - encode? ( >=media-sound/lame-3.99 ) - mad? ( - media-libs/libmad - media-libs/libao - ) - vorbis? ( - media-libs/libvorbis - media-libs/libao - )" -DEPEND="${COMMON_DEPEND} - virtual/pkgconfig" -RDEPEND="${COMMON_DEPEND} - !app-cdr/cue2toc - !dev-util/pccts" - -PATCHES=( - "${FILESDIR}/${P}-glibc212.patch" - "${FILESDIR}/${P}-unsigned-char.patch" - "${FILESDIR}/${P}-ax_pthread.patch" - "${FILESDIR}/${P}-wformat-security.patch" - "${FILESDIR}/${P}-lame-3.100.patch" -) - -S="${WORKDIR}/${P/_}" - -src_prepare() { - default - eautoreconf -} - -src_configure() { - # Fix building with latest libsigc++ - append-cxxflags -std=c++11 - find -name '*.h' -exec sed -i '/sigc++\/object.h/d' {} + || die - - econf \ - --without-xdao \ - $(use_with vorbis ogg-support) \ - $(use_with mad mp3-support) \ - $(use_with encode lame) -} |