blob: 756c028c30876612d217102c22c281c3b320d7e3 (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/npapi-vlc/npapi-vlc-9999.ebuild,v 1.1 2010/10/16 15:21:31 aballier Exp $
EAPI=3
SCM=""
if [ "${PV%9999}" != "${PV}" ] ; then
SCM=git
EGIT_BOOTSTRAP=""
EGIT_BRANCH=master
EGIT_PROJECT=${P}
EGIT_REPO_URI="git://git.videolan.org/npapi-vlc.git"
fi
inherit autotools multilib ${SCM}
DESCRIPTION="Mozilla plugin based on VLC"
HOMEPAGE="http://www.videolan.org/"
SRC_URI=""
LICENSE="LGPL-2.1"
SLOT="0"
if [ "${PV%9999}" = "${PV}" ] ; then
KEYWORDS="~amd64"
else
KEYWORDS=""
fi
IUSE=""
RDEPEND=">=media-video/vlc-1.1
>=net-libs/xulrunner-1.9.2
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXt
!<media-video/vlc-1.2[nsplugin]"
DEPEND="${RDEPEND}
dev-util/pkgconfig"
src_prepare() {
if [ "${PV%9999}" != "${PV}" ] ; then
eautoreconf
fi
}
src_install() {
emake DESTDIR="${D}" npvlcdir="/usr/$(get_libdir)/nsbrowser/plugins" install || die
find "${D}" -name '*.la' -delete
dodoc NEWS AUTHORS ChangeLog || die
}
|