50 lines
1.2 KiB
Bash
50 lines
1.2 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
inherit autotools multilib-minimal
|
|
|
|
DESCRIPTION="Library for parsing, editing, and saving EXIF data"
|
|
HOMEPAGE="https://libexif.github.io/"
|
|
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
|
|
IUSE="doc nls static-libs"
|
|
|
|
RDEPEND="nls? ( virtual/libintl )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-0.6.13-pkgconfig.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i -e '/FLAGS=/s:-g::' configure.ac || die #390249
|
|
# Previously elibtoolize for BSD
|
|
eautoreconf
|
|
}
|
|
|
|
multilib_src_configure() {
|
|
ECONF_SOURCE="${S}" econf \
|
|
$(use_enable doc docs) \
|
|
$(use_enable nls) \
|
|
$(use_enable static-libs static) \
|
|
--with-doc-dir="${EPREFIX}"/usr/share/doc/${PF}
|
|
}
|
|
|
|
multilib_src_install() {
|
|
emake DESTDIR="${D}" install
|
|
}
|
|
|
|
multilib_src_install_all() {
|
|
find "${ED}" -name '*.la' -delete || die
|
|
rm -f "${ED}"/usr/share/doc/${PF}/{ABOUT-NLS,COPYING} || die
|
|
}
|