diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-19 17:17:51 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-19 17:17:51 +0000 |
commit | 50635325bdaa4eff374315e5a2da8bbd5331f5f0 (patch) | |
tree | 76a10e4bc7954c12a7ce94616df83b70f9de933d /media-sound/cdtool/cdtool-2.1.8-r1.ebuild | |
parent | gentoolkit-0.3.0_rc7 version bump. Bug 237694 tracks changes to gentoolkit-0.... (diff) | |
download | gentoo-2-50635325bdaa4eff374315e5a2da8bbd5331f5f0.tar.gz gentoo-2-50635325bdaa4eff374315e5a2da8bbd5331f5f0.tar.bz2 gentoo-2-50635325bdaa4eff374315e5a2da8bbd5331f5f0.zip |
Fix compile with glibc 2.10
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/cdtool/cdtool-2.1.8-r1.ebuild')
-rw-r--r-- | media-sound/cdtool/cdtool-2.1.8-r1.ebuild | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/media-sound/cdtool/cdtool-2.1.8-r1.ebuild b/media-sound/cdtool/cdtool-2.1.8-r1.ebuild new file mode 100644 index 000000000000..0cfed06ce661 --- /dev/null +++ b/media-sound/cdtool/cdtool-2.1.8-r1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cdtool/cdtool-2.1.8-r1.ebuild,v 1.1 2009/06/19 17:17:51 ssuominen Exp $ + +EAPI=2 +inherit eutils + +DESCRIPTION="Collection of command-line utilities to control cdrom devices." +HOMEPAGE="http://hinterhof.net/cdtool" +SRC_URI="http://hinterhof.net/cdtool/dist/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +RDEPEND="" +DEPEND="!media-sound/cdplay" + +src_prepare() { + epatch "${FILESDIR}"/${P}-glibc-2.10.patch +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc CHANGES CREDITS README TODO +} |