diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2020-10-16 13:45:18 +0200 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2020-10-16 13:46:07 +0200 |
commit | 16bd0a64848882b130353c7163410f4356896777 (patch) | |
tree | 362e25de23caf4a0386669337b6a341326e9da61 /media-libs/libraw/libraw-0.20.2.ebuild | |
parent | x11-terms/rxvt-unicode: Old (diff) | |
download | gentoo-16bd0a64848882b130353c7163410f4356896777.tar.gz gentoo-16bd0a64848882b130353c7163410f4356896777.tar.bz2 gentoo-16bd0a64848882b130353c7163410f4356896777.zip |
media-libs/libraw: Bump to version 0.20.2
Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'media-libs/libraw/libraw-0.20.2.ebuild')
-rw-r--r-- | media-libs/libraw/libraw-0.20.2.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/media-libs/libraw/libraw-0.20.2.ebuild b/media-libs/libraw/libraw-0.20.2.ebuild new file mode 100644 index 000000000000..16d3dcca644d --- /dev/null +++ b/media-libs/libraw/libraw-0.20.2.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools multilib-minimal toolchain-funcs + +MY_PN=LibRaw +MY_PV="${PV/_b/-B}" +MY_P="${MY_PN}-${MY_PV}" + +DESCRIPTION="LibRaw is a library for reading RAW files obtained from digital photo cameras" +HOMEPAGE="https://www.libraw.org/ https://github.com/LibRaw/LibRaw" +SRC_URI="https://www.libraw.org/data/${MY_P}.tar.gz" + +LICENSE="LGPL-2.1 CDDL" +SLOT="0/20" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="examples jpeg +lcms openmp" + +RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) + lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] )" + +BDEPEND="virtual/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +DOCS=( Changelog.txt README.md ) + +pkg_pretend() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +src_prepare() { + default + eautoreconf +} + +multilib_src_configure() { + local myeconfargs=( + --disable-static + --disable-jasper + $(use_enable examples) + $(use_enable jpeg) + $(use_enable lcms) + $(use_enable openmp) + ) + ECONF_SOURCE="${S}" econf "${myeconfargs[@]}" +} + +multilib_src_install_all() { + einstalldocs + + # package installs .pc files + find "${D}" -name '*.la' -delete || die +} |