blob: 31b2495f73aa1641112dfe7212a79b843c13c26d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/monotone/monotone-0.18.ebuild,v 1.5 2005/11/18 02:24:44 leonardop Exp $
inherit eutils flag-o-matic
DESCRIPTION="Monotone Distributed Version Control System"
HOMEPAGE="http://www.venge.net/monotone/"
SRC_URI="http://www.venge.net/monotone/downloads/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="${PV}"
KEYWORDS="x86 amd64 ppc"
IUSE="nls doc"
RDEPEND=">=dev-libs/boost-1.32.0"
DEPEND="${RDEPEND}
>=sys-devel/gcc-3.2
sys-devel/gettext"
# doc? ( dev-lang/perl sys-apps/texinfo )"
src_compile() {
# more aggressive optimizations cause trouble with the
# crypto library
# disable stack protector
strip-flags
# replace-flags -O3 -O2
append-flags -fno-stack-protector-all -fno-stack-protector -fno-strict-aliasing
econf `use_enable nls` || die
emake || die "emake failed"
}
src_test() {
make check || die "self test failed"
}
src_install() {
emake DESTDIR="${D}" install || die
if use doc ; then
dodoc figures/*.pdf
# Generate html docs - broken - missing images from figures directory
# emake html || die "emake html failed"
# dohtml -r html/*
fi
dodoc NEWS
dodoc UPGRADE
# Slotting
OLD_N=${PN}
NEW_N=${PN}-${PV}
cd ${D}/usr
mv bin/${OLD_N} bin/${NEW_N}
mv share/info/${OLD_N}.info share/info/${NEW_N}.info
mv share/man/man1/${OLD_N}.1 share/man/man1/${NEW_N}.1
ewarn "For incopatibility reasons new monotone binary was renamed to \"${NEW_N}\""
ewarn "If you want to use new features of ${PN} you have to upgrade your existing"
ewarn "databases as described in /usr/share/doc/${P}/UPGRAGE.gz document."
}
|