blob: f9ba5e27e2a57be671b8d4fa76d073e5c1fbb9e0 (
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
37
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/libvisual-plugins/libvisual-plugins-0.1.6.ebuild,v 1.3 2004/10/17 09:53:07 dholm Exp $
IUSE=""
inherit eutils
DESCRIPTION="Visualization plugins for use with the libvisual framework."
HOMEPAGE="http://libvisual.sourceforge.net/"
SRC_URI="mirror://sourceforge/libvisual/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc ~x86 ~ppc"
RDEPEND="virtual/opengl
media-libs/glut
media-libs/libvisual"
DEPEND="${RDEPEND}
sys-apps/sed
sys-apps/findutils"
src_unpack() {
unpack ${A}
cd ${S}
find . -name Makefile.in |
xargs sed -i "s:\$(prefix)/lib:@libdir@:"
}
src_install() {
make install DESTDIR="${D}" || die
dodoc AUTHORS ChangeLog NEWS README TODO
}
|