blob: 96ed3d8e50f747529dedb93ed4fba8651335b106 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Copyright 2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="Logbook application for amateur radio use"
HOMEPAGE="http://w1hkj.com"
SRC_URI="http://www.w1hkj.com/files/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
DEPEND=">=x11-libs/fltk-1.1.7"
RDEPEND="${DEPEND}"
src_configure() {
local -x CONFIG_SHELL=${BASH}
default
}
|