blob: 9f563925f6c250b2f27f8c355bebca39a360b793 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/www-apps/gitweb/gitweb-263.ebuild,v 1.1 2006/01/15 00:47:46 ferdy Exp $
inherit webapp
DESCRIPTION="Web interface to GIT repositories"
HOMEPAGE="http://git.or.cz/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~x86 ~alpha"
IUSE=""
DEPEND=""
RDEPEND="dev-lang/perl
>=dev-util/git-1.0.0"
src_install() {
webapp_src_preinst
dodoc README "${FILESDIR}/README.gentoo"
rm -f README
sed -i \
-e 's:^\(my $projectroot = *\).*$:\1"/var/git";:g' \
-e 's:indextext\.html:index/text.html:g' \
gitweb.cgi || die "sed failed"
chmod +x gitweb.cgi
cp gitweb.cgi ${D}${MY_HTDOCSDIR}
webapp_postinst_txt en "${FILESDIR}/postinstall-en.txt"
webapp_src_install
}
|