summaryrefslogtreecommitdiffabout
authorLars Hjemli <hjemli@gmail.com>2009-01-12 07:57:23 (UTC)
committer Lars Hjemli <hjemli@gmail.com>2009-01-12 07:57:23 (UTC)
commite78186dcb63ec67a38dddfcd8f91d2108583320b (patch) (unidiff)
treee3aa15cee0b9705e3f4a5b56dab4de3d6091a5f2
parent31665579c2779669c0cc56b8eb63f162b7e165df (diff)
parentd529c6fbdca7ce3782e75b3a74baad21ef2f92c3 (diff)
downloadcgit-e78186dcb63ec67a38dddfcd8f91d2108583320b.zip
cgit-e78186dcb63ec67a38dddfcd8f91d2108583320b.tar.gz
cgit-e78186dcb63ec67a38dddfcd8f91d2108583320b.tar.bz2
Merge branch 'stable'
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--Makefile15
-rw-r--r--cgitrc.5.txt4
2 files changed, 11 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 036fcd7..7793c0b 100644
--- a/Makefile
+++ b/Makefile
@@ -1,14 +1,16 @@
1CGIT_VERSION = v0.8.1 1CGIT_VERSION = v0.8.1
2CGIT_SCRIPT_NAME = cgit.cgi 2CGIT_SCRIPT_NAME = cgit.cgi
3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit 3CGIT_SCRIPT_PATH = /var/www/htdocs/cgit
4CGIT_DATA_PATH = $(CGIT_SCRIPT_PATH)
4CGIT_CONFIG = /etc/cgitrc 5CGIT_CONFIG = /etc/cgitrc
5CACHE_ROOT = /var/cache/cgit 6CACHE_ROOT = /var/cache/cgit
6SHA1_HEADER = <openssl/sha.h> 7SHA1_HEADER = <openssl/sha.h>
7GIT_VER = 1.6.1 8GIT_VER = 1.6.1
8GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2 9GIT_URL = http://www.kernel.org/pub/software/scm/git/git-$(GIT_VER).tar.bz2
10INSTALL = install
9 11
10# Define NO_STRCASESTR if you don't have strcasestr. 12# Define NO_STRCASESTR if you don't have strcasestr.
11# 13#
12# Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin). 14# Define NEEDS_LIBICONV if linking with libc is not enough (eg. Darwin).
13# 15#
14 16
@@ -132,21 +134,22 @@ libgit:
132 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a 134 $(QUIET_SUBDIR0)git $(QUIET_SUBDIR1) NO_CURL=1 xdiff/lib.a
133 135
134test: all 136test: all
135 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all 137 $(QUIET_SUBDIR0)tests $(QUIET_SUBDIR1) all
136 138
137install: all 139install: all
138 mkdir -p $(DESTDIR)$(CGIT_SCRIPT_PATH) 140 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_SCRIPT_PATH)
139 install cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 141 $(INSTALL) -m 0755 cgit $(DESTDIR)$(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
140 install -m 0644 cgit.css $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.css 142 $(INSTALL) -m 0755 -d $(DESTDIR)$(CGIT_DATA_PATH)
141 install -m 0644 cgit.png $(DESTDIR)$(CGIT_SCRIPT_PATH)/cgit.png 143 $(INSTALL) -m 0644 cgit.css $(DESTDIR)$(CGIT_DATA_PATH)/cgit.css
144 $(INSTALL) -m 0644 cgit.png $(DESTDIR)$(CGIT_DATA_PATH)/cgit.png
142 145
143uninstall: 146uninstall:
144 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME) 147 rm -f $(CGIT_SCRIPT_PATH)/$(CGIT_SCRIPT_NAME)
145 rm -f $(CGIT_SCRIPT_PATH)/cgit.css 148 rm -f $(CGIT_DATA_PATH)/cgit.css
146 rm -f $(CGIT_SCRIPT_PATH)/cgit.png 149 rm -f $(CGIT_DATA_PATH)/cgit.png
147 150
148clean: 151clean:
149 rm -f cgit VERSION *.o *.d 152 rm -f cgit VERSION *.o *.d
150 153
151get-git: 154get-git:
152 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git 155 curl $(GIT_URL) | tar -xj && rm -rf git && mv git-$(GIT_VER) git
diff --git a/cgitrc.5.txt b/cgitrc.5.txt
index 7887b02..ab9ab66 100644
--- a/cgitrc.5.txt
+++ b/cgitrc.5.txt
@@ -285,14 +285,14 @@ root-desc=tracking the foobar development
285 285
286 286
287# Include some more info about foobar.com on the index page 287# Include some more info about foobar.com on the index page
288root-readme=/var/www/htdocs/about.html 288root-readme=/var/www/htdocs/about.html
289 289
290 290
291# Allow download of tar.gz, tar.bz and zip-files 291# Allow download of tar.gz, tar.bz2 and zip-files
292snapshots=tar.gz tar.bz zip 292snapshots=tar.gz tar.bz2 zip
293 293
294 294
295## 295##
296## List of repositories. 296## List of repositories.
297## PS: Any repositories listed when repo.group is unset will not be 297## PS: Any repositories listed when repo.group is unset will not be
298## displayed under a group heading 298## displayed under a group heading