gentoo/sci-visualization/quickplot/quickplot-1.0.1_rc-r1.ebuild
Alfredo Tupone aacf904c41
sci-visualization/quickplot: require X on gtk+
Closes: https://bugs.gentoo.org/890786
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
2026-04-23 19:10:08 +02:00

53 lines
963 B
Bash

# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit autotools desktop
MY_P=${P/_rc/rc}
DESCRIPTION="A fast interactive 2D plotter"
HOMEPAGE="
http://quickplot.sourceforge.net/
https://github.com/lanceman2/quickplot"
SRC_URI="https://github.com/lanceman2/${PN}/archive/${MY_P}.tar.gz"
S="${WORKDIR}/${PN}-${MY_P}"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc ~x86"
RDEPEND="
media-libs/libsndfile:=
>=sys-libs/readline-0.6.2:0=
x11-libs/gtk+:3[X]"
DEPEND="${RDEPEND}"
BDEPEND="
virtual/imagemagick-tools[png]
virtual/pkgconfig
www-client/lynx
dev-vcs/git"
PATCHES=( "${FILESDIR}"/${P}-automake.patch )
src_prepare() {
default
eautoreconf
}
src_configure() {
econf \
--disable-static \
--enable-developer
}
src_install() {
default
make_desktop_entry 'quickplot --no-pipe' Quickplot quickplot Graphics
# no static archives
find "${ED}" -name '*.la' -delete || die
}