mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-13 00:28:15 +02: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>
32 lines
692 B
Bash
32 lines
692 B
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit cmake
|
|
|
|
DESCRIPTION="SIFT algorithm for automatic panorama creation in C"
|
|
HOMEPAGE="https://hugin.sourceforge.net/ http://user.cs.tu-berlin.de/~nowozin/autopano-sift/"
|
|
SRC_URI="https://downloads.sourceforge.net/hugin/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 arm64 x86"
|
|
IUSE=""
|
|
|
|
DEPEND="
|
|
dev-libs/libxml2:=
|
|
media-libs/libjpeg-turbo:=
|
|
media-libs/libpano13:=
|
|
media-libs/libpng:=
|
|
media-libs/tiff:=
|
|
sys-libs/zlib
|
|
"
|
|
RDEPEND="${DEPEND}
|
|
!media-gfx/autopano-sift
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-lm.patch
|
|
"${FILESDIR}"/${P}-include-order.patch # bug 759514
|
|
)
|