diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2011-05-12 18:21:08 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2011-05-12 18:21:08 +1000 |
commit | cb7a2ce27efdce9ff6efcf8a4dc3cc7d35797bc4 (patch) | |
tree | 40682bd8f12e5155c9aa05c89b77cbff6c0d4f53 | |
parent | f72448cfe3017fe7d12a117ab3e1c66f127a8fe7 (diff) | |
download | contrib-cb7a2ce27efdce9ff6efcf8a4dc3cc7d35797bc4.tar.gz contrib-cb7a2ce27efdce9ff6efcf8a4dc3cc7d35797bc4.tar.xz |
cgit: 0.8.3.4 -> 0.9
-rw-r--r-- | cgit/.footprint | 5 | ||||
-rw-r--r-- | cgit/.md5sum | 4 | ||||
-rw-r--r-- | cgit/Pkgfile | 14 |
3 files changed, 15 insertions, 8 deletions
diff --git a/cgit/.footprint b/cgit/.footprint index 4c5c1751e..903fcf328 100644 --- a/cgit/.footprint +++ b/cgit/.footprint @@ -3,6 +3,11 @@ drwxr-xr-x root/root etc/apache/ drwxr-xr-x root/root etc/apache/extra/ -rw-r----- root/root etc/apache/extra/cgit.conf drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/lib/ +drwxr-xr-x root/root usr/lib/cgit/ +drwxr-xr-x root/root usr/lib/cgit/filters/ +-rwxr-xr-x root/root usr/lib/cgit/filters/commit-links.sh +-rwxr-xr-x root/root usr/lib/cgit/filters/syntax-highlighting.sh drwxr-xr-x root/root usr/man/ drwxr-xr-x root/root usr/man/man5/ -rw-r--r-- root/root usr/man/man5/cgitrc.5.gz diff --git a/cgit/.md5sum b/cgit/.md5sum index f7a240211..f77d99c3d 100644 --- a/cgit/.md5sum +++ b/cgit/.md5sum @@ -1,3 +1,3 @@ -712e4d3013d754aa5752e0101188cf32 cgit-0.8.3.4.tar.bz2 +b55f953c5c8a418bca72b3de3c297270 cgit-0.9.tar.bz2 347db2eb49cea170b2e513189756ca82 cgit.conf -8a8cd93b8a4dff0a03c0fdc77253af3e git-1.7.3.5.tar.bz2 +76898de4566d11c0d0eec7e99edc2b5c git-1.7.4.1.tar.bz2 diff --git a/cgit/Pkgfile b/cgit/Pkgfile index 08b9e721b..449588986 100644 --- a/cgit/Pkgfile +++ b/cgit/Pkgfile @@ -5,10 +5,10 @@ # Depends on: git asciidoc ## prt-get info git | awk '/Version:/ {print $2}' -gitversion=1.7.3.5 +gitversion=1.7.4.1 name=cgit -version=0.8.3.4 +version=0.9 release=1 source=(http://hjemli.net/git/cgit/snapshot/$name-$version.tar.bz2 http://www.kernel.org/pub/software/scm/git/git-$gitversion.tar.bz2 @@ -24,12 +24,14 @@ build() { rm -rf git ln -s $SRC/git-$gitversion git - sed "s/GIT_VER = .*/GIT_VER = $gitversion/" -i Makefile - make cgit man-doc - make DESTDIR=$PKG install + sed -i \ + -e "s/GIT_VER = .*/GIT_VER = $gitversion/" \ + -e '/^mandir = $(prefix)/s|/share/man|/man|' Makefile + + make + make DESTDIR=$PKG install install-man install -D -m 0640 $SRC/cgit.conf $PKG/etc/apache/extra/cgit.conf - install -D -m 0644 cgitrc.5 $PKG/usr/man/man5/cgitrc.5 install -d -m 0750 $PKG/var/cache/cgit } |