blob: 15563af7d7d5c4a559498e1138f35afb8ef8e464 (
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
28
29
30
31
32
33
34
35
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/asunder/asunder-1.0.ebuild,v 1.3 2008/02/04 16:34:50 drac Exp $
inherit eutils
DESCRIPTION="Asunder is a graphical CD ripper and encoder"
HOMEPAGE="http://littlesvr.ca/asunder"
SRC_URI="http://littlesvr.ca/${PN}/releases/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="flac mp3 vorbis"
RDEPEND=">=x11-libs/gtk+-2.4
>=media-libs/libcddb-0.9.5
media-sound/cdparanoia
mp3? ( media-sound/lame )
vorbis? ( media-sound/vorbis-tools )
flac? ( media-libs/flac )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
sys-devel/gettext"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-desktop-entry.patch
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed."
dodoc AUTHORS ChangeLog NEWS README TODO
}
|