diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-11-21 23:33:12 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-11-21 23:33:12 +0000 |
commit | 76dfcb92e09b9e49c9649aa454ca6383386dcaf0 (patch) | |
tree | 39720edeb7a92369aef9c35f52ef1a91794cec01 /media-libs/quvi | |
parent | Version bump. (diff) | |
download | gentoo-2-76dfcb92e09b9e49c9649aa454ca6383386dcaf0.tar.gz gentoo-2-76dfcb92e09b9e49c9649aa454ca6383386dcaf0.tar.bz2 gentoo-2-76dfcb92e09b9e49c9649aa454ca6383386dcaf0.zip |
Version bump.
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs/quvi')
-rw-r--r-- | media-libs/quvi/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/quvi/quvi-0.9.5.ebuild | 39 |
2 files changed, 45 insertions, 1 deletions
diff --git a/media-libs/quvi/ChangeLog b/media-libs/quvi/ChangeLog index 71558adaffa6..9eefed77cbe7 100644 --- a/media-libs/quvi/ChangeLog +++ b/media-libs/quvi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/quvi # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/quvi/ChangeLog,v 1.52 2013/11/06 06:27:36 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/quvi/ChangeLog,v 1.53 2013/11/21 23:33:12 radhermit Exp $ + +*quvi-0.9.5 (21 Nov 2013) + + 21 Nov 2013; Tim Harder <radhermit@gentoo.org> +quvi-0.9.5.ebuild: + Version bump. 06 Nov 2013; Tim Harder <radhermit@gentoo.org> -quvi-0.9.1.ebuild, -quvi-0.9.2.ebuild, -quvi-0.9.3.ebuild: diff --git a/media-libs/quvi/quvi-0.9.5.ebuild b/media-libs/quvi/quvi-0.9.5.ebuild new file mode 100644 index 000000000000..b303f361281c --- /dev/null +++ b/media-libs/quvi/quvi-0.9.5.ebuild @@ -0,0 +1,39 @@ +# 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.5.ebuild,v 1.1 2013/11/21 23:33:12 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=">=dev-libs/glib-2.24:2 + >=net-misc/curl-7.21.0 + >=media-libs/libquvi-0.9.2:= + 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}"/${PN}-0.9.1-automagic.patch ) + +src_configure() { + local myeconfargs=( + --with-manual + $(use_enable json) + $(use_enable xml) + ) + autotools-utils_src_configure +} |