blob: 3d42202cbd064d7b76513aa9f67ccbba2b77b6b5 (
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
36
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gai-album/gai-album-0.6.ebuild,v 1.5 2004/10/08 17:11:09 lordvan Exp $
MY_PV="${PV}"
MY_P="${PN}-${MY_PV}"
DESCRIPTION="Displays the CD cover of the album that XMMS is playing"
HOMEPAGE="http://gai.sourceforge.net/"
SRC_URI="mirror://sourceforge/gai/${MY_P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ppc"
IUSE=""
DEPEND=">=x11-libs/gai-0.5.3
>=media-sound/xmms-1.2.10"
S=${WORKDIR}/${MY_P}
src_compile() {
econf ${MY_CONF} || die
# fixing install location for ROX panel stuff
# if this doesn't work as expected please report a bug at bugs.gentoo.org
mv ${S}/Makefile ${S}/Makefile.orig
sed s%\"/usr/share%\"${D}/usr/share%g ${S}/Makefile.orig > ${S}/Makefile
emake || die
}
src_install() {
# small hack so the gnome stuff gets installed in place
mv ${S}/Makefile ${S}/Makefile.orig
sed s%"GNOMEDIR = /usr"%"GNOMEDIR = ${D}/usr"% ${S}/Makefile.orig | \
sed s%" /usr/share/apps"%" ${D}/usr/share/apps%" \
> ${S}/Makefile
einstall || die
dodoc BUGS COPYING CHANGES INSTALL README README.gai TODO ALBUMART xmms-song-change.sh
}
|