diff options
author | Fernando J. Pereda <ferdy@gentoo.org> | 2005-10-05 16:31:35 +0000 |
---|---|---|
committer | Fernando J. Pereda <ferdy@gentoo.org> | 2005-10-05 16:31:35 +0000 |
commit | a4d22f9679c769f36044e7e1ce862f03ed3402fa (patch) | |
tree | 6ddfa296781ef1ad6a01d2bb59ec6abe365a0f8e /www-apps/gitweb/files | |
parent | Added src_install. Bug 64997. (diff) | |
download | gentoo-2-a4d22f9679c769f36044e7e1ce862f03ed3402fa.tar.gz gentoo-2-a4d22f9679c769f36044e7e1ce862f03ed3402fa.tar.bz2 gentoo-2-a4d22f9679c769f36044e7e1ce862f03ed3402fa.zip |
initial import
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'www-apps/gitweb/files')
-rw-r--r-- | www-apps/gitweb/files/README.gentoo | 40 | ||||
-rw-r--r-- | www-apps/gitweb/files/digest-gitweb-247 | 1 | ||||
-rw-r--r-- | www-apps/gitweb/files/postinstall-en.txt | 2 |
3 files changed, 43 insertions, 0 deletions
diff --git a/www-apps/gitweb/files/README.gentoo b/www-apps/gitweb/files/README.gentoo new file mode 100644 index 000000000000..e8b0ad8354fb --- /dev/null +++ b/www-apps/gitweb/files/README.gentoo @@ -0,0 +1,40 @@ +Gentoo related gitweb information +================================= + +Abstract +-------- + +gitweb comes with almost no documentation so this document should cover +everything needed to set a gitweb instalation in Gentoo. However, +setting gitweb is really easy. This document assumes you have your +public repositories in ``/var/git/``. + +gitweb.cgi configuration +------------------------ + +In the directory where gitweb is installed you have to create at least +one file named ``index/index.aux``. This file defines the repositories +gitweb should show. The example below defines a project located in +``/var/git/test-project.git`` owned by ``Some Project Developer``. + + test-project.git Some+Project+Developer + +( Note the use of the plus sign (``+``) ) + +Also you may want to create the file ``index/text.html``. This file will +be included in the header of the project listing page in gitweb. + +Webserver configuration +----------------------- + +If you use apache you may want to add the following to a ``.htaccess`` +file in the directory where gitweb is installed. + + DirectoryIndex gitweb.cgi + +In lighttpd you may want to add ``gitweb.cgi`` to your indexfiles in +your ``lighttpd.conf`` as follows: + +server.indexfiles += ("gitweb.cgi") + +.. vim: set tw=72 sw=4 et ft=glep : .. diff --git a/www-apps/gitweb/files/digest-gitweb-247 b/www-apps/gitweb/files/digest-gitweb-247 new file mode 100644 index 000000000000..69e39cbe2be6 --- /dev/null +++ b/www-apps/gitweb/files/digest-gitweb-247 @@ -0,0 +1 @@ +MD5 770fcdf6c7148c56d95dd52d5288e347 gitweb-247.tar.bz2 13770 diff --git a/www-apps/gitweb/files/postinstall-en.txt b/www-apps/gitweb/files/postinstall-en.txt new file mode 100644 index 000000000000..00f5fe888bc3 --- /dev/null +++ b/www-apps/gitweb/files/postinstall-en.txt @@ -0,0 +1,2 @@ +Before using gitweb please consider reading +the included Gentoo specific README.gentoo file. |