blob: 1428662cc66d6eefd0d5b185ed1e6efa57acf6d9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WX_GTK_VER=3.2-gtk3
inherit desktop wxwidgets
DESCRIPTION="Experimental x-y data reading library"
HOMEPAGE="https://github.com/wojdyr/xylib"
SRC_URI="https://github.com/wojdyr/xylib/releases/download/v${PV}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
IUSE="bzip2 gui zlib"
RDEPEND="
bzip2? ( app-arch/bzip2 )
gui? ( x11-libs/wxGTK:${WX_GTK_VER} )
zlib? ( sys-libs/zlib )
"
DEPEND="${RDEPEND}
dev-libs/boost
"
src_configure() {
use gui && setup-wxwidgets
econf \
--disable-static \
$(use_with bzip2 bzlib) \
$(use_with gui) \
$(use_with zlib)
}
src_install() {
default
find "${ED}" -name '*.la' -delete || die
newicon gui/xyconvert48.xpm xyconvert.xpm
make_desktop_entry xyconvert xyConvert xyconvert.xpm
}
|