forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-libs/libraw: Bump to version 0.18.12
Package-Manager: Portage-2.3.40, Repoman-2.3.9
- Loading branch information
Lars Wendler
committed
Jun 19, 2018
1 parent
e914e9a
commit 3385475
Showing
2 changed files
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=7 | ||
|
||
inherit multilib-minimal toolchain-funcs | ||
|
||
MY_PN=LibRaw | ||
MY_PV="${PV/_b/-B}" | ||
MY_P="${MY_PN}-${MY_PV}" | ||
# demosaic package sometimes doesn't get bumped. | ||
# Otherwise you can set it to ${PV}. | ||
DEMOSAIC_PV="0.18.8" | ||
|
||
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 | ||
demosaic? ( | ||
https://www.libraw.org/data/LibRaw-demosaic-pack-GPL2-${DEMOSAIC_PV}.tar.gz | ||
https://www.libraw.org/data/LibRaw-demosaic-pack-GPL3-${DEMOSAIC_PV}.tar.gz | ||
)" | ||
|
||
LICENSE="LGPL-2.1 CDDL demosaic? ( GPL-2 GPL-3 )" | ||
SLOT="0/16" # subslot = libraw soname version | ||
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" | ||
IUSE="demosaic examples jpeg jpeg2k +lcms openmp" | ||
|
||
RDEPEND="jpeg? ( >=virtual/jpeg-0-r2:0[${MULTILIB_USEDEP}] ) | ||
jpeg2k? ( >=media-libs/jasper-1.900.1-r6:=[${MULTILIB_USEDEP}] ) | ||
lcms? ( >=media-libs/lcms-2.5:2[${MULTILIB_USEDEP}] )" | ||
DEPEND="${RDEPEND} | ||
virtual/pkgconfig" | ||
|
||
S="${WORKDIR}/${MY_P}" | ||
|
||
DOCS=( Changelog.txt README ) | ||
|
||
pkg_pretend() { | ||
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp | ||
} | ||
|
||
pkg_setup() { | ||
[[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp | ||
} | ||
|
||
multilib_src_configure() { | ||
local myeconfargs=( | ||
--disable-static | ||
$(use_enable demosaic demosaic-pack-gpl2) | ||
$(use_enable demosaic demosaic-pack-gpl3) | ||
$(use_enable examples) | ||
$(use_enable jpeg) | ||
$(use_enable jpeg2k jasper) | ||
$(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 | ||
} |