blob: 9b6a9f0bd0e652820b919b6d47273d1b7d6b3589 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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.2 2009/06/19 17:22:52 ssuominen Exp $
EAPI=2
inherit eutils
DESCRIPTION="Collection of command-line utilities to control cdrom devices."
HOMEPAGE="http://www.gentoo.org"
SRC_URI="mirror://gentoo/${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
}
|