diff options
author | Danny Rawlins <romster@shortcircuit.net.au> | 2008-03-18 21:10:19 +1100 |
---|---|---|
committer | Danny Rawlins <romster@shortcircuit.net.au> | 2008-03-18 21:12:03 +1100 |
commit | 13620e933342eda942c497be153b03094faf5fc8 (patch) | |
tree | 1922742521a9dcf5f2fd651ae69c6fc97048f6a1 /ccze | |
parent | 45f462df319890b3248ff0e449fee81735018aa7 (diff) | |
download | contrib-13620e933342eda942c497be153b03094faf5fc8.tar.gz contrib-13620e933342eda942c497be153b03094faf5fc8.tar.xz |
ccze: picked up droped port
Diffstat (limited to 'ccze')
-rw-r--r-- | ccze/Pkgfile | 31 |
1 files changed, 14 insertions, 17 deletions
diff --git a/ccze/Pkgfile b/ccze/Pkgfile index 965e846ca..9b2eb71e1 100644 --- a/ccze/Pkgfile +++ b/ccze/Pkgfile @@ -1,9 +1,8 @@ # Description: A log colorizer written in C with plugin support. -# URL: http://bonehunter.rulez.org/software/ccze/ -# Packager: Vincenzo Colosimo <vico@bicisport.de> -# Maintainer: ames Mills prologic at shortcircuit dot net dot au -# -# Depends on: libpcre +# URL: http://bonehunter.rulez.org/software/ccze/ +# Maintainer: Danny Rawlins, romster at shortcircuit dot net dot au +# Packager: Vincenzo Colosimo, vico at bicisport dot de +# Depends on: libpcre ncurses name=ccze version=0.2.1 @@ -11,21 +10,19 @@ release=3 source=(http://ftp.debian.org/debian/pool/main/c/ccze/ccze_$version.orig.tar.gz) build() { - cd $name-$version + cd ccze-$version - # GCC 4.x fixes - sed -e 's/-Wswitch -Wmulticharacter/-Wswitch/' \ - -i src/Makefile.in - sed -e '/AC_CHECK_TYPE(error_t, int)/d' \ - -i configure.ac - autoconf + # GCC 4.x fixes + sed -i src/Makefile.in -e 's/-Wswitch -Wmulticharacter/-Wswitch/' + sed -i configure.ac -e '/AC_CHECK_TYPE(error_t, int)/d' + autoconf - ./configure \ - --prefix=/usr \ + ./configure \ + --prefix=/usr \ --mandir=/usr/man \ - --disable-nls + --disable-nls - make + make make DESTDIR=$PKG install - chown -R root:root $PKG } + |