diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-22 09:50:56 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-22 09:50:56 +0000 |
commit | 30164816645d4c2fd126c2dd488ae9ad5a6348b4 (patch) | |
tree | a54df67a3a550a440bf94b6f8096de2af96e4c12 /media-libs/quvi/quvi-0.9.1.ebuild | |
parent | Bump (diff) | |
download | historical-30164816645d4c2fd126c2dd488ae9ad5a6348b4.tar.gz historical-30164816645d4c2fd126c2dd488ae9ad5a6348b4.tar.bz2 historical-30164816645d4c2fd126c2dd488ae9ad5a6348b4.zip |
Version bump, update to EAPI 5, and add json, nls, and xml use flags.
Package-Manager: portage-2.2.0_alpha175/cvs/Linux x86_64
Manifest-Sign-Key: 0x4AB3E85B4F064CA3
Diffstat (limited to 'media-libs/quvi/quvi-0.9.1.ebuild')
-rw-r--r-- | media-libs/quvi/quvi-0.9.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/media-libs/quvi/quvi-0.9.1.ebuild b/media-libs/quvi/quvi-0.9.1.ebuild new file mode 100644 index 000000000000..c9e3b32c0f17 --- /dev/null +++ b/media-libs/quvi/quvi-0.9.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/quvi/quvi-0.9.1.ebuild,v 1.1 2013/05/22 09:50:53 radhermit Exp $ + +EAPI=5 +AUTOTOOLS_AUTORECONF=1 + +inherit autotools-utils + +DESCRIPTION="A command line tool for parsing video download links" +HOMEPAGE="http://quvi.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${PV:0:3}/${P}.tar.xz" + +LICENSE="AGPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="json nls xml" + +RDEPEND=">=net-misc/curl-7.21.0 + >=media-libs/libquvi-0.9:= + json? ( >=dev-libs/json-glib-0.12 ) + nls? ( virtual/libintl ) + xml? ( >=dev-libs/libxml2-2.7.8:2 )" +DEPEND="${RDEPEND} + app-arch/xz-utils + virtual/pkgconfig + nls? ( sys-devel/gettext )" + +PATCHES=( "${FILESDIR}"/${P}-automagic.patch ) + +src_configure() { + local myeconfargs=( + --with-manual + $(use_enable json) + $(use_enable xml) + ) + autotools-utils_src_configure +} |