blob: d10d8c501513dd46c1cdf282e63aeb41d92cafc0 (
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
76
77
78
79
80
81
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/geneweb/geneweb-5.01.ebuild,v 1.1 2008/01/03 22:34:47 tupone Exp $
inherit eutils
EAPI="1"
DESCRIPTION="Genealogy software program with a Web interface."
HOMEPAGE="http://cristal.inria.fr/~ddr/GeneWeb/"
SRC_URI="ftp://ftp.inria.fr/INRIA/Projects/cristal/${PN}/Src/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+ocamlopt"
DEPEND="dev-lang/ocaml
dev-ml/camlp5"
pkg_setup() {
if use ocamlopt && ! built_with_use --missing true dev-lang/ocaml ocamlopt
then
eerror "In order to build ${PN} with native code support from ocaml"
eerror "You first need to have a native code ocaml compiler."
eerror "You need to install dev-lang/ocaml with ocamlopt useflag on."
die "Please install ocaml with ocamlopt useflag"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gentoo.patch
sed -i -e "s:@GENTOO_DATADIR@:/usr/share/${PN}:" \
setup/setup.ml || die "Failed sed for gentoo path"
}
src_compile() {
econf
if use ocamlopt; then
emake || die "Compiling native code executables failed"
else
emake OCAMLC=ocamlc OCAMLOPT=ocamlopt out \
|| die "Compiling byte code executables failed"
# If using bytecode we dont want to strip the binary as it would remove
# the bytecode and only leave ocamlrun...
export STRIP_MASK="*/bin/*"
fi
}
src_install() {
# Install binaries
dobin src/{consang,check_base,gwc,gwd,gwu} \
ged2gwb/ged2gwb gwb2ged/gwb2ged setup/gwsetup \
|| die "Failed installing binaries"
# Install manpages
doman man/* || die "Failed installing man pages"
# Install doc
dodoc ICHANGES etc/LISEZMOI.distrib.txt etc/README.distrib.txt \
CHANGES etc/a.gwf etc/LISEZMOI.distrib.txt README.distrib.txt
insinto /usr/share/doc/${PF}/contrib
doins -r contrib/{misc,templ} || die "Failed installing contributions"
make distrib || die "Failed making distrib"
insinto /usr/share/${PN}
doins -r distribution/gw/{doc,etc,gwd.arg,images,lang,only.txt,setup} \
|| die "Failed installing data"
insinto /usr/lib/${PN}
doins -r distribution/gw/gwtp_tmp/* || die "Failed installing CGI program"
newinitd "${FILESDIR}/geneweb.initd" geneweb
newconfd "${FILESDIR}/geneweb.confd" geneweb
}
pkg_postinst() {
enewuser geneweb "" "/bin/bash" /var/lib/geneweb
einfo "A CGI program has been installed in /usr/lib/${PN}. Follow the"
einfo "instructions on the README in that directory to use it"
}
|