blob: 9a0e1f8a7da7e3cc5712d7f6fc7ebf22b1802655 (
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-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="2"
inherit versionator
MY_P=${PN}-$(replace_version_separator 2 '-')
DESCRIPTION="Pidgin plugin for sharing and viewing links to videos"
HOMEPAGE="http://code.google.com/p/pidgin-embeddedvideo/"
SRC_URI="http://pidgin-embeddedvideo.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="net-im/pidgin[gtk]
>=net-libs/webkit-gtk-1.1.12
net-misc/curl"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
src_compile() {
emake -j1 || die "make fail"
}
src_install() {
emake install DESTDIR="${D}" || die "install fail"
dodoc AUTHORS ChangeLog || die "doc install fail"
}
|