blob: 99311d4d090a5caf2f8e0a49af43a43cf475057d (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cogito/cogito-0.17.3.ebuild,v 1.4 2006/08/12 21:28:01 tester Exp $
inherit eutils
MY_PV=${PV//_/}
DESCRIPTION="The GIT scripted toolkit"
HOMEPAGE="http://kernel.org/pub/software/scm/cogito/"
SRC_URI="http://kernel.org/pub/software/scm/cogito/${PN}-${MY_PV}.tar.bz2
mirror://gentoo/${PN}-doc-${MY_PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
IUSE=""
DEPEND="dev-libs/openssl
sys-libs/zlib
>=dev-util/git-1.4.0"
RDEPEND="net-misc/rsync
app-text/rcs
net-misc/curl"
S=${WORKDIR}/${PN}-${MY_PV}
SDOC=${WORKDIR}/${PN}-doc-${MY_PV}
src_unpack() {
unpack ${A} ; cd "${S}"
# t9300-seek won't work under the sandbox
rm t/t9300-seek.sh
}
src_compile() {
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" prefix="/usr" || die "install failed"
dodoc README* VERSION COPYING
doman "${SDOC}"/man?/*
dodir /usr/share/doc/${PF}/{,html,contrib}
cp "${SDOC}"/html/* "${D}"/usr/share/doc/${PF}/html
cp "${S}"/contrib/* "${D}"/usr/share/doc/${PF}/contrib
}
src_test() {
# 'make test' from the root runs the tutorial-script which executes
# other commands such as 'gpg' and creates stuff in portage's $HOME.
cd "${S}"
make -C t/
}
|