forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskribilo-0.10.0-r100.ebuild
82 lines (63 loc) · 1.67 KB
/
skribilo-0.10.0-r100.ebuild
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
76
77
78
79
80
81
82
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
GUILE_COMPAT=( 2-2 3-0 )
inherit elisp-common guile
DESCRIPTION="Document production tool written in Guile Scheme"
HOMEPAGE="https://www.nongnu.org/skribilo/"
SRC_URI="mirror://nongnu/${PN}/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="emacs"
REQUIRED_USE="${GUILE_REQUIRED_USE}"
RDEPEND="
app-text/ghostscript-gpl
media-gfx/imagemagick
${GUILE_DEPS}
>=dev-scheme/guile-lib-0.2.7-r100[${GUILE_USEDEP}]
>=dev-scheme/guile-reader-0.6.3-r100[${GUILE_USEDEP}]
"
DEPEND="${RDEPEND}"
BDEPEND="emacs? ( >=app-editors/emacs-23.1:* )"
SITEFILE="50${PN}-gentoo.el"
src_prepare() {
default
# gnustep-base/gnustep-base installs /usr/bin/pl that isnt the unpackaged ploticus.
sed -i -e 's/for ac_prog in ploticus pl/for ac_prog in ploticus/' configure || die
}
src_configure() {
if ! use emacs ; then
export EMACS="no"
export EMACSLOADPATH="/dev/null"
fi
guile_foreach_impl econf
}
src_compile() {
guile_src_compile
use emacs && elisp-compile ./emacs/*.el
}
src_install() {
guile_src_install
# Link includes DESTDIR
for file in "${ED}"/usr/share/info/*.png; do
rm "${file}" || die
dosym ../doc/${PF}/html/$(basename ${file}) ${file##${ED}}
done
if use emacs ; then
elisp-install ${PN} ./emacs/*.el{,c}
elisp-site-file-install "${FILESDIR}/${SITEFILE}"
else
local emacsd="${D}"/usr/share/emacs
if [[ -d "${emacsd}" ]] ; then
einfo "Building without Emacs support but ${emacsd} found! Removing."
rm -r "${emacsd}" || die
fi
fi
}
pkg_postinst() {
use emacs && elisp-site-regen
}
pkg_postrm() {
use emacs && elisp-site-regen
}