blob: 2309d02a5c84ebd57a55624e1a974149452ae507 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-libvisual/bmp-libvisual-0.1.0.ebuild,v 1.3 2005/08/23 22:25:43 chainsaw Exp $
IUSE=""
inherit eutils
MY_PN="libvisual-bmp"
MY_P="${MY_PN}-${PV}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="Libvisual is an abstraction library that comes between applications and audio visualisation plugins."
HOMEPAGE="http://libvisual.sourceforge.net/"
SRC_URI="mirror://sourceforge/libvisual/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~sparc x86 ~ppc"
RDEPEND="media-sound/beep-media-player
media-libs/libsdl
virtual/opengl
media-libs/libvisual
media-plugins/libvisual-plugins"
src_install() {
make install DESTDIR="${D}" || die
if [ "$(get_libdir)" != "lib" ]; then
mv ${D}/usr/lib ${D}/usr/$(get_libdir)
fi
dodoc AUTHORS ChangeLog NEWS README TODO
}
|