blob: 266d13e47d9a0bd2a17b286e93162d667425b201 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-pda/gtkpod/gtkpod-0.99.8.ebuild,v 1.2 2006/11/11 19:33:17 tester Exp $
DESCRIPTION="GUI for iPod using GTK2"
HOMEPAGE="http://gtkpod.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc ~sparc ~x86"
IUSE="aac"
DEPEND=">=x11-libs/gtk+-2.4.0
>=media-libs/libid3tag-0.15
>=gnome-base/libglade-2
>=media-libs/libgpod-0.4.0
aac? ( media-libs/libmp4v2 )"
src_unpack() {
unpack ${A}
# Disable aac forcefully if not enabled
cd ${S}
use aac || sed -i -e s/MP4FileInfo/MP4FileInfoDisabled/g configure
}
src_install() {
einstall || die
dodoc README ${DISTDIR}/Local_Playcounts.README
}
|