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/x11-misc/slop/slop-7.6.ebuild

43 lines
798 B

# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit cmake
DESCRIPTION="Application that queries the user for a selection for printing"
HOMEPAGE="https://github.com/naelstrof/slop"
SRC_URI="https://github.com/naelstrof/slop/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
LICENSE="GPL-3"
SLOT="0/${PV}"
IUSE="opengl"
RDEPEND="
dev-libs/icu:=
x11-libs/libX11
x11-libs/libXext
opengl? (
media-libs/glew:0=
media-libs/libglvnd
virtual/opengl
x11-libs/libXrender:=
)
"
BDEPEND="
${RDEPEND}
x11-base/xorg-proto
"
DEPEND="
${RDEPEND}
media-libs/glm
"
PATCHES=( "${FILESDIR}/${PN}"-7.5-missing-header.patch )
src_configure() {
local mycmakeargs=( -DSLOP_OPENGL=$(usex opengl) )
cmake_src_configure
}