blob: e16129ffdb18104388adb119855cb353d64af805 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
DESCRIPTION="Motif based schedule planner"
HOMEPAGE="https://www.bitrot.de/plan.html"
SRC_URI="
ftp://ftp.fu-berlin.de/unix/X11/apps/plan/${P}.tar.gz
https://dev.gentoo.org/~soap/distfiles/${P}-patches.txz"
LICENSE="GPL-2+" #448646
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
RDEPEND="
x11-libs/libX11
x11-libs/libXt
x11-libs/motif:0"
DEPEND="${RDEPEND}"
BDEPEND="
sys-devel/bison
sys-devel/flex"
PATCHES=( "${WORKDIR}"/patches )
src_compile() {
emake -C src CC="$(tc-getCC)" SHARE=/usr/share/plan linux
}
src_install() {
emake -C src \
DESTDIR="${ED}" \
SHARE=/usr/share/plan \
install
keepdir /usr/share/plan/netplan.dir
dodoc HISTORY README
pushd misc >/dev/null || die
doman netplan.1 plan.1 plan.4
insinto /usr/share/${PN}/misc
doins netplan.boot BlackWhite Monochrome plan.fti Plan.xpm plan.xpm
exeinto /usr/share/${PN}/misc
doexe Killpland cvs vsc msschedule2plan plan2vcs
popd >/dev/null || die
pushd web >/dev/null || die
insinto /usr/share/${PN}/web
doins help.html bottom.html cgi-lib.pl common.pl holiday_webplan rtsban.jpg
exeinto /usr/share/${PN}/web
doexe *.cgi
popd >/dev/null || die
}
pkg_postinst() {
elog
elog " Check /usr/share/${PN}/holiday for examples to set your"
elog " ~/.holiday according to your country."
elog
elog " WebPlan ${PV} can be found in /usr/share/${PN}/web."
elog
}
|