2021-04-19 08:47:28 +03:00
|
|
|
# Copyright 1999-2021 Gentoo Authors
|
2011-11-09 11:33:19 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
|
2015-04-06 15:06:44 +03:00
|
|
|
EAPI=5
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2021-04-19 08:47:28 +03:00
|
|
|
inherit epatch autotools
|
2011-11-09 11:33:19 +04:00
|
|
|
|
|
|
|
DESCRIPTION="X11 XVideo Querying/Setting Tool from Ogle project"
|
|
|
|
HOMEPAGE="http://www.dtek.chalmers.se/groups/dvd"
|
|
|
|
SRC_URI="http://www.dtek.chalmers.se/groups/dvd/dist/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT=0
|
2015-04-06 15:06:44 +03:00
|
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
2011-11-09 11:33:19 +04:00
|
|
|
IUSE="gtk"
|
|
|
|
|
|
|
|
RDEPEND="x11-libs/libX11
|
|
|
|
x11-libs/libXv
|
|
|
|
x11-libs/libXext
|
|
|
|
gtk? ( x11-libs/gtk+:2 )"
|
|
|
|
DEPEND="${RDEPEND}
|
|
|
|
x11-libs/libXt
|
2012-05-07 00:14:41 +04:00
|
|
|
virtual/pkgconfig"
|
2011-11-09 11:33:19 +04:00
|
|
|
|
2015-04-06 15:06:44 +03:00
|
|
|
src_prepare() {
|
2011-11-09 11:33:19 +04:00
|
|
|
epatch "${FILESDIR}"/${P}-gtk.patch
|
2015-04-06 15:06:44 +03:00
|
|
|
epatch "${FILESDIR}"/${P}-pod-encoding.patch
|
2011-11-09 11:33:19 +04:00
|
|
|
eautoreconf
|
|
|
|
}
|
|
|
|
|
2015-04-06 15:06:44 +03:00
|
|
|
src_configure() {
|
2011-11-09 11:33:19 +04:00
|
|
|
econf $(use_with gtk)
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
2019-12-12 01:01:49 +03:00
|
|
|
emake DESTDIR="${D}" install
|
2011-11-09 11:33:19 +04:00
|
|
|
dodoc AUTHORS ChangeLog NEWS README
|
|
|
|
}
|