diff options
author | 2013-12-08 04:29:43 +0000 | |
---|---|---|
committer | 2013-12-08 04:29:43 +0000 | |
commit | 200868e0328a373191978bebbee23b85ac4e72a6 (patch) | |
tree | e9c161ecf4df99e8fdeee8a7e2b5917d57b63595 /media-libs/flickcurl | |
parent | Refactor ninja option processing into eninja function. Add load average suppo... (diff) | |
download | gentoo-2-200868e0328a373191978bebbee23b85ac4e72a6.tar.gz gentoo-2-200868e0328a373191978bebbee23b85ac4e72a6.tar.bz2 gentoo-2-200868e0328a373191978bebbee23b85ac4e72a6.zip |
Version bump (bug #493474).
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-libs/flickcurl')
-rw-r--r-- | media-libs/flickcurl/ChangeLog | 7 | ||||
-rw-r--r-- | media-libs/flickcurl/flickcurl-1.25.ebuild | 45 |
2 files changed, 51 insertions, 1 deletions
diff --git a/media-libs/flickcurl/ChangeLog b/media-libs/flickcurl/ChangeLog index a522782141f2..650a349ae299 100644 --- a/media-libs/flickcurl/ChangeLog +++ b/media-libs/flickcurl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-libs/flickcurl # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/flickcurl/ChangeLog,v 1.14 2013/06/25 12:51:36 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/flickcurl/ChangeLog,v 1.15 2013/12/08 04:29:43 radhermit Exp $ + +*flickcurl-1.25 (08 Dec 2013) + + 08 Dec 2013; Tim Harder <radhermit@gentoo.org> +flickcurl-1.25.ebuild: + Version bump (bug #493474). 25 Jun 2013; Agostino Sarubbo <ago@gentoo.org> flickcurl-1.24.ebuild: Stable for amd64, wrt bug #474236 diff --git a/media-libs/flickcurl/flickcurl-1.25.ebuild b/media-libs/flickcurl/flickcurl-1.25.ebuild new file mode 100644 index 000000000000..98656ce518c8 --- /dev/null +++ b/media-libs/flickcurl/flickcurl-1.25.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-libs/flickcurl/flickcurl-1.25.ebuild,v 1.1 2013/12/08 04:29:43 radhermit Exp $ + +EAPI="5" + +inherit autotools eutils + +DESCRIPTION="C library for the Flickr API" +HOMEPAGE="http://librdf.org/flickcurl/" +SRC_URI="http://download.dajobe.org/flickcurl/${P}.tar.gz" + +LICENSE="|| ( LGPL-2.1 GPL-2 Apache-2.0 )" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc raptor static-libs" + +RDEPEND=">=net-misc/curl-7.10.0 + >=dev-libs/libxml2-2.6.8:2 + raptor? ( media-libs/raptor:2 )" +DEPEND="${RDEPEND} + virtual/pkgconfig" + +src_prepare() { + if ! use doc ; then + # Only install html documentation when the use flag is enabled + sed -e '/gtk-doc.make/d' \ + -e 's:+=:=:' \ + -i docs/Makefile.am || die + fi + + eautoreconf +} + +src_configure() { + econf \ + $(use_with raptor) \ + $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" TARGET_DIR=/usr/share/doc/${PF}/html install + dodoc AUTHORS ChangeLog NEWS README + prune_libtool_files +} |