blob: 940e6ee9e9be5c76c43ae1ffec25024cd181e7d1 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/asunder/asunder-0.1.0.ebuild,v 1.4 2006/05/08 04:40:45 tcort Exp $
MY_P=Asunder-${PV}
S=${WORKDIR}/${MY_P}
IUSE="doc mp3 vorbis flac"
DESCRIPTION="Asunder is a graphical CD ripper and encoder"
SRC_URI="http://ericlathrop.com/${PN}/${MY_P}.tar.bz2"
HOMEPAGE="http://ericlathrop.com/asunder/"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86"
SLOT="0"
DEPEND=">=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 )"
src_install() {
make DESTDIR=${D} install
dodir /usr/share/applications
cp ${FILESDIR}/asunder.desktop ${D}/usr/share/applications
dodoc AUTHORS ChangeLog NEWS README TODO
}
|