blob: e7e5f964e579d0d4f6b9092ac9fbad54f9c3a789 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/xmms-coverviewer/xmms-coverviewer-0.11.ebuild,v 1.1 2004/06/08 06:43:53 raker Exp $
IUSE=""
DESCRIPTION="An XMMS plugin for viewing album covers"
HOMEPAGE="http://coverviewer.sourceforge.net/"
SRC_URI="mirror://sourceforge/coverviewer/${P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa"
DEPEND="=x11-libs/gtk+-1.2*
media-libs/gdk-pixbuf
media-sound/xmms
media-libs/id3lib"
src_compile() {
econf || die "econf failed"
emake || die "make failed"
}
src_install() {
make DESTDIR=${D} install || die "make install failed"
dodoc AUTHORS INSTALL NEWS
}
pkg_postinst() {
ewarn ""
ewarn "To use Internet-search, you'll need python"
ewarn ""
}
|