diff options
author | Alfredo Tupone <tupone@gentoo.org> | 2007-08-18 14:21:28 +0000 |
---|---|---|
committer | Alfredo Tupone <tupone@gentoo.org> | 2007-08-18 14:21:28 +0000 |
commit | 187ea9c0ab06b8717bf083300d40a57b346bac36 (patch) | |
tree | 15e8be474624f80c7d4d2142d794d3d80b3dc5a7 /app-misc/geneweb/geneweb-5.00.ebuild | |
parent | Stable on amd64 wrt bug #189264 (diff) | |
download | gentoo-2-187ea9c0ab06b8717bf083300d40a57b346bac36.tar.gz gentoo-2-187ea9c0ab06b8717bf083300d40a57b346bac36.tar.bz2 gentoo-2-187ea9c0ab06b8717bf083300d40a57b346bac36.zip |
New ebuild. Based on bug #22239
(Portage version: 2.1.2.11)
Diffstat (limited to 'app-misc/geneweb/geneweb-5.00.ebuild')
-rw-r--r-- | app-misc/geneweb/geneweb-5.00.ebuild | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/app-misc/geneweb/geneweb-5.00.ebuild b/app-misc/geneweb/geneweb-5.00.ebuild new file mode 100644 index 000000000000..ea7c3903cb8d --- /dev/null +++ b/app-misc/geneweb/geneweb-5.00.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/geneweb/geneweb-5.00.ebuild,v 1.1 2007/08/18 14:21:28 tupone Exp $ + +inherit eutils + +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" +IUSE="" + +DEPEND="dev-lang/ocaml" + +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_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" +} |