summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFernando J. Pereda <ferdy@gentoo.org>2006-01-15 00:47:46 +0000
committerFernando J. Pereda <ferdy@gentoo.org>2006-01-15 00:47:46 +0000
commit74a97b0b4fbc4a79df8d16b1373298e4de8ff152 (patch)
tree76c3b28fdf8dfde62a1126cdaa9e735924fd9b0f /www-apps/gitweb
parentStable on amd64, bug 114207. (diff)
downloadgentoo-2-74a97b0b4fbc4a79df8d16b1373298e4de8ff152.tar.gz
gentoo-2-74a97b0b4fbc4a79df8d16b1373298e4de8ff152.tar.bz2
gentoo-2-74a97b0b4fbc4a79df8d16b1373298e4de8ff152.zip
new snapshot
(Portage version: 2.0.53)
Diffstat (limited to 'www-apps/gitweb')
-rw-r--r--www-apps/gitweb/ChangeLog9
-rw-r--r--www-apps/gitweb/Manifest16
-rw-r--r--www-apps/gitweb/files/digest-gitweb-2631
-rw-r--r--www-apps/gitweb/gitweb-263.ebuild35
4 files changed, 47 insertions, 14 deletions
diff --git a/www-apps/gitweb/ChangeLog b/www-apps/gitweb/ChangeLog
index cd0504b591ea..5a516396363f 100644
--- a/www-apps/gitweb/ChangeLog
+++ b/www-apps/gitweb/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for www-apps/gitweb
-# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/www-apps/gitweb/ChangeLog,v 1.7 2005/12/14 17:22:13 ferdy Exp $
+# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/www-apps/gitweb/ChangeLog,v 1.8 2006/01/15 00:47:46 ferdy Exp $
+
+*gitweb-263 (15 Jan 2006)
+
+ 15 Jan 2006; Fernando J. Pereda <ferdy@gentoo.org> +gitweb-263.ebuild:
+ new snapshot
*gitweb-261 (14 Dec 2005)
diff --git a/www-apps/gitweb/Manifest b/www-apps/gitweb/Manifest
index 1bacb45f9403..1a2e58ec8c88 100644
--- a/www-apps/gitweb/Manifest
+++ b/www-apps/gitweb/Manifest
@@ -1,16 +1,8 @@
------BEGIN PGP SIGNED MESSAGE-----
-Hash: SHA1
-
-MD5 5a86ce0d5b66e62bd89c55709cf1d97b gitweb-261.ebuild 827
MD5 a0c70bc8736df9b1c70bc2f8873762ff ChangeLog 1145
-MD5 b32bfee3c12fac430c39b4247b8ff31f metadata.xml 259
MD5 f1a84515eba72a08a13816239fe73998 files/README.gentoo 1265
MD5 9e9efa84205f0cfdfa016e3635962a85 files/digest-gitweb-261 62
+MD5 902fef9eec4601153546a5fa8d1f278f files/digest-gitweb-263 62
MD5 ba79e998d31eedfab7871f5372d6890c files/postinstall-en.txt 93
------BEGIN PGP SIGNATURE-----
-Version: GnuPG v1.4.2 (GNU/Linux)
-
-iD8DBQFDoFTdViELBEf1JB0RApdLAJ9EfzfkloQqF3MlbTu8pysgOmBR2wCfX9y7
-AhRjp+xj9p/yg5W24Glw7OI=
-=wC2T
------END PGP SIGNATURE-----
+MD5 5a86ce0d5b66e62bd89c55709cf1d97b gitweb-261.ebuild 827
+MD5 fe9371ff851bedc96573bef7077371cf gitweb-263.ebuild 826
+MD5 b32bfee3c12fac430c39b4247b8ff31f metadata.xml 259
diff --git a/www-apps/gitweb/files/digest-gitweb-263 b/www-apps/gitweb/files/digest-gitweb-263
new file mode 100644
index 000000000000..f981a852dcdb
--- /dev/null
+++ b/www-apps/gitweb/files/digest-gitweb-263
@@ -0,0 +1 @@
+MD5 f0d8bb5d8f41834594c3b5319862a27e gitweb-263.tar.bz2 14778
diff --git a/www-apps/gitweb/gitweb-263.ebuild b/www-apps/gitweb/gitweb-263.ebuild
new file mode 100644
index 000000000000..9f563925f6c2
--- /dev/null
+++ b/www-apps/gitweb/gitweb-263.ebuild
@@ -0,0 +1,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
+}