diff options
author | Alexis Ballier <aballier@gentoo.org> | 2014-02-12 12:43:31 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2014-02-12 12:43:31 +0000 |
commit | 548ddece8a8d42a1f37bf9097cbc76fcde79fa4b (patch) | |
tree | 8a35b10fcf78aef706e28461096ade6a26ebc9f7 /media-libs/libquvi | |
parent | Fixed compilation with USE="-ncurses python" (bug #501034) (diff) | |
download | gentoo-2-548ddece8a8d42a1f37bf9097cbc76fcde79fa4b.tar.gz gentoo-2-548ddece8a8d42a1f37bf9097cbc76fcde79fa4b.tar.bz2 gentoo-2-548ddece8a8d42a1f37bf9097cbc76fcde79fa4b.zip |
add slotted 0.4 version
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 160F534A)
Diffstat (limited to 'media-libs/libquvi')
-rw-r--r-- | media-libs/libquvi/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/libquvi/libquvi-0.4.1-r1.ebuild | 43 |
2 files changed, 50 insertions, 2 deletions
diff --git a/media-libs/libquvi/ChangeLog b/media-libs/libquvi/ChangeLog index 3e6b1ce52ce1..df45913129a8 100644 --- a/media-libs/libquvi/ChangeLog +++ b/media-libs/libquvi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/libquvi -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/ChangeLog,v 1.27 2013/11/21 23:30:39 radhermit Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/ChangeLog,v 1.28 2014/02/12 12:43:31 aballier Exp $ + +*libquvi-0.4.1-r1 (12 Feb 2014) + + 12 Feb 2014; Alexis Ballier <aballier@gentoo.org> +libquvi-0.4.1-r1.ebuild: + add slotted 0.4 version *libquvi-0.9.4 (21 Nov 2013) diff --git a/media-libs/libquvi/libquvi-0.4.1-r1.ebuild b/media-libs/libquvi/libquvi-0.4.1-r1.ebuild new file mode 100644 index 000000000000..687391e4e39e --- /dev/null +++ b/media-libs/libquvi/libquvi-0.4.1-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libquvi/libquvi-0.4.1-r1.ebuild,v 1.1 2014/02/12 12:43:31 aballier Exp $ + +EAPI=4 + +inherit autotools-utils + +DESCRIPTION="Library for parsing video download links" +HOMEPAGE="http://quvi.sourceforge.net/" +SRC_URI="mirror://sourceforge/quvi/${PV:0:3}/${P}.tar.xz" + +LICENSE="GPL-3" +SLOT="0.4" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="examples static-libs" + +RDEPEND=">=net-misc/curl-7.18.2 + !<media-libs/quvi-0.4.0 + >=media-libs/libquvi-scripts-0.4.0:0.4 + >=dev-lang/lua-5.1[deprecated] + !=media-libs/libquvi-0.4*:0" +DEPEND="${RDEPEND} + app-arch/xz-utils + virtual/pkgconfig" + +DOCS=( AUTHORS ChangeLog NEWS README ) + +src_configure() { + local myeconfargs=( + --without-manual + ) + autotools-utils_src_configure +} + +src_install() { + autotools-utils_src_install + + if use examples ; then + docinto examples + dodoc examples/*.{c,h} + fi +} |