blob: fdb13015ce5a40dc69d58c1ad00d8738213eaf7d (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit desktop xdg
DESCRIPTION="XTide provides tide and current predictions in a wide variety of formats"
HOMEPAGE="http://www.flaterco.com/xtide/"
SRC_URI="ftp://ftp.flaterco.com/xtide/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="media-libs/libpng:=
sci-geosciences/gpsd
>=sci-geosciences/libtcd-2.2.5_p2
x11-libs/libX11
x11-libs/libXaw3d[unicode]
x11-libs/libXaw3dXft
x11-libs/libXft
x11-libs/libXpm
x11-libs/libXt"
RDEPEND="${DEPEND}
media-fonts/font-schumacher-misc"
src_install() {
default
echo 'HFILE_PATH=/usr/share/harmonics' > 50xtide_harm || die
doenvd 50xtide_harm
newicon -s 48 iconsrc/icon_48x48_orig.png ${PN}.png
make_desktop_entry ${PN} 'Tide prediction' ${PN} 'Science'
find "${ED}" -name '*.la' -delete || die
}
|