blob: 0d0b3489b3d0ba04c4d605d18e77f27a60a45c3e (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=2
DESCRIPTION="GTK2 widget for the unicap video capture library"
HOMEPAGE="http://unicap-imaging.org/"
SRC_URI="http://unicap-imaging.org/downloads/lib${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc nls"
RDEPEND="~media-libs/unicap-${PV}
x11-libs/gtk+:2
x11-libs/libXv
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
doc? ( dev-util/gtk-doc )"
S=${WORKDIR}/lib${P}
src_configure() {
econf \
$(use_enable debug debug-unicapgtk) \
$(use_enable doc gtk-doc) \
$(use_enable nls)
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS ChangeLog NEWS README || die
}
|