You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/media-libs/libpano13/libpano13-2.9.21.ebuild

34 lines
755 B

# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="8"
inherit cmake
DESCRIPTION="Helmut Dersch's panorama toolbox library"
HOMEPAGE="http://panotools.sourceforge.net/"
SRC_URI="mirror://sourceforge/panotools/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0/3"
KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
IUSE="java suitesparse"
DEPEND="media-libs/libpng:0=
media-libs/tiff:0
sys-libs/zlib
virtual/jpeg:0
java? ( >=virtual/jdk-1.8:* )
suitesparse? ( sci-libs/suitesparse )"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${PN}-$(ver_cut 1-3)"
src_configure() {
local mycmakeargs=(
-DSUPPORT_JAVA_PROGRAMS=$(usex java)
-DUSE_SPARSE_LEVMAR=$(usex suitesparse)
)
cmake_src_configure
}