mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 02:17:34 -08:00
Signed-off-by: Alfred Wingate <parona@protonmail.com> Part-of: https://github.com/gentoo/gentoo/pull/41919 Signed-off-by: Sam James <sam@gentoo.org>
48 lines
828 B
Bash
48 lines
828 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="C library for the Flickr API"
|
|
HOMEPAGE="https://librdf.org/flickcurl/"
|
|
SRC_URI="https://download.dajobe.org/flickcurl/${P}.tar.gz"
|
|
|
|
LICENSE="|| ( LGPL-2.1 GPL-2 Apache-2.0 )"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 ~ppc64 x86"
|
|
IUSE="raptor"
|
|
|
|
RDEPEND="
|
|
>=net-misc/curl-7.10.0
|
|
>=dev-libs/libxml2-2.6.8:2=
|
|
raptor? ( media-libs/raptor:2 )
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
dev-build/gtk-doc-am
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.26-c99-configure.patch
|
|
"${FILESDIR}"/${PN}-1.26-c99.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-gtk-doc \
|
|
$(use_with raptor)
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
find "${ED}" -name '*.la' -delete || die
|
|
}
|