blob: 22b375e46632b1cac85876fe910ebb8857710ec3 (
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
# Please also check if app-misc/astrolog-ephemeris archive needs update
inherit toolchain-funcs
MY_PV=$(ver_rs 1 '')
DESCRIPTION="A many featured astrology chart calculation program"
HOMEPAGE="
https://www.astrolog.org/astrolog.htm
https://github.com/CruiserOne/Astrolog
"
SRC_URI="https://www.astrolog.org/ftp/ast${MY_PV:0:2}src.zip"
S="${WORKDIR}"
LICENSE="AGPL-3 GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86"
IUSE="X"
DEPEND="X? ( x11-libs/libX11 )"
RDEPEND="${DEPEND}"
BDEPEND="app-arch/unzip"
src_prepare() {
default
# we use /usr/share/astrolog for config and (optional) ephemeris-data-files
local cfgargs=( -e "s:~/astrolog:/usr/share/astrolog:g" )
# if we do NOT use X, we comment the "#define X11" in astrolog.h
use X || cfgargs+=( -e "s:#define X11://&:g" )
sed -i "${cfgargs[@]}" astrolog.h || die
local makeargs=(
# respect CXX (bug #243606), and LDFLAGS
-e 's:\tcc :\t$(CXX) $(LDFLAGS) :'
# respect -O flags
-e '/^CPPFLAGS/s:-O ::'
)
sed -i "${makeargs[@]}" Makefile || die
}
src_compile() {
local libs=( -lm -ldl )
# we need to link with -lX11 if the X use is set
use X && libs+=( -lX11 )
# Makefile contains stripping flag in LIBS. It is easier to overload it
# here because we need to control LIBS content with X use anyway.
emake LIBS="${libs[*]}"
}
src_install() {
dobin astrolog
dodoc astrolog.doc changes.doc
insinto /usr/share/astrolog
doins astrolog.as
}
pkg_postinst() {
if [[ -z "${REPLACING_VERSIONS}" ]]; then
elog "There is a sample config file /usr/share/astrolog/astrolog.as"
elog "astrolog looks in current dir for a file astrolog.as before"
elog "using the file in /usr/share/astrolog"
elog "If you want extended accuracy of astrolog's calculations you"
elog "can emerge the optional package \"astrolog-ephemeris\" which"
elog "needs ~32.9 MB additional diskspace for the ephemeris-files"
fi
}
|