Author: viper Date: 2006-10-02 11:47:51 +0200 (Mon, 02 Oct 2006) New Revision: 1983 Modified: crux-2.2/ports/opt/boehm-gc/Pkgfile Log: boehm-gc: adopted Modified: crux-2.2/ports/opt/boehm-gc/Pkgfile =================================================================== --- crux-2.2/ports/opt/boehm-gc/Pkgfile 2006-10-02 09:18:25 UTC (rev 1982) +++ crux-2.2/ports/opt/boehm-gc/Pkgfile 2006-10-02 09:47:51 UTC (rev 1983) @@ -1,8 +1,7 @@ # Description: Garbage collection and memory leak detection for C and C++ # URL: http://www.hpl.hp.com/personal/Hans_Boehm/gc/ -# Maintainer: Jukka Heino, jukka dot heino at gmail dot com +# Maintainer: Simon Glo�ner, viper at hometux dot de # Packager: Han Boetes, han at mijncomputer dot dl -# Depends on: name=boehm-gc version=6.8 @@ -10,7 +9,8 @@ source=(http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/gc${version}.tar.gz) build () { - cd gc$version + cd gc${version} + ./configure \ --prefix=/usr \ --enable-threads=pthreads \ @@ -18,6 +18,8 @@ --enable-shared make make DESTDIR=$PKG install + install -D -m 644 doc/gc.man $PKG/usr/man/man3/gc.3 + rm -rf $PKG/usr/share }