blob: e009bf49930577a01b1245db8655e34dec331229 (
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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/git/git-0.99.9g.ebuild,v 1.1 2005/11/10 12:58:32 r3pek Exp $
inherit python
DESCRIPTION="GIT - the stupid content tracker"
HOMEPAGE="http://kernel.org/pub/software/scm/git/"
SRC_URI="http://kernel.org/pub/software/scm/git/${PN}-core-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
IUSE="mozsha1 ppcsha1 doc curl tcltk gitsendemail"
S="${WORKDIR}/${PN}-core-${PV}"
DEPEND="dev-libs/openssl
sys-libs/zlib
app-text/rcs
!app-misc/git
doc? ( >=app-text/asciidoc-7.0.1 app-text/xmlto )"
RDEPEND="${DEPEND}
dev-lang/perl
>=dev-lang/python-2.3
tcltk? ( dev-lang/tk )
curl? ( net-misc/curl )
dev-perl/String-ShellQuote
gitsendemail? ( dev-perl/Mail-Sendmail dev-perl/Email-Valid )"
src_unpack() {
unpack ${A}
cd ${S}
sed -i \
-e "s:-g -O2:${CFLAGS}:" \
Makefile
}
src_compile() {
# Use python_version to check for python 2.4.
# If the user don't have version 2.4 have then we set WITH_OWN_SUBPROCESS_PY
# that makes use of a suplied version of subprocess.py
python_version()
[[ $PYVER < 2.4 ]] && export WITH_OWN_SUBPROCESS_PY=yes
if use mozsha1 ; then
export MOZILLA_SHA1=yes
elif use ppcsha1 ; then
export PPC_SHA1=yes
fi
if ! use curl; then
export NO_CURL=yes
ewarn "git-http-pull will not be built because you are not"
ewarn " using the curl use flag"
fi
use gitsendemail && export WITH_SEND_EMAIL=yes
emake prefix=/usr || die "make failed"
if use doc ; then
sed -i \
-e "s:^\(WEBDOC_DEST = \).*$:\1${D}/usr/share/doc/${PF}/html/:g" \
${S}/Documentation/Makefile || die "sed failed (Documentation)"
emake -C Documentation/ || die "make documentation failed"
fi
}
src_install() {
make DESTDIR=${D} prefix=/usr install || die "make install failed"
if use gitsendemail ; then
exeinto /usr/bin
newexe git-send-email.perl git-send-email
else
sed -i -e '/^send-email *$/d' ${D}/usr/bin/git
fi
use tcltk || rm ${D}/usr/bin/gitk
dodoc README COPYING
if use doc ; then
doman Documentation/*.1 Documentation/*.7
make install-webdoc -C Documentation/
fi
newinitd "${FILESDIR}/git-daemon.initd" git-daemon
newconfd "${FILESDIR}/git-daemon.confd" git-daemon
}
src_test() {
cd ${S}
make test || die "tests failed"
}
pkg_postinst() {
# Remove old links. Workarounds a portage bug not removing symlinks
${S}/cmd-rename.sh "${ROOT}/usr/bin"
einfo
einfo "If you want to import arch repositories into git, consider using the"
einfo "git-archimport command. You should install dev-util/tla before"
einfo
einfo "If you want to import cvs repositories into git, consider using the"
einfo "git-cvsimport command. You should install >=dev-util/cvsps-2.1 before"
einfo
einfo "If you want to import svn repositories into git, consider using the"
einfo "git-svnimport command. You should install dev-util/subversion before"
einfo
}
|