1
0
forked from ports/contrib

gift-gnutella: add updated nodes

This commit is contained in:
Danny Rawlins 2008-03-25 00:35:18 +11:00
parent b4c06519c0
commit 42d7735bea
3 changed files with 11 additions and 1 deletions

View File

@ -10,3 +10,4 @@ drwxr-xr-x root/root usr/share/giFT/Gnutella/
-rw-r--r-- root/root usr/share/giFT/Gnutella/Gnutella.conf.template -rw-r--r-- root/root usr/share/giFT/Gnutella/Gnutella.conf.template
-rw-r--r-- root/root usr/share/giFT/Gnutella/gwebcaches -rw-r--r-- root/root usr/share/giFT/Gnutella/gwebcaches
-rw-r--r-- root/root usr/share/giFT/Gnutella/hostiles.txt -rw-r--r-- root/root usr/share/giFT/Gnutella/hostiles.txt
-rw-r--r-- root/root usr/share/giFT/Gnutella/nodes

View File

@ -1 +1,4 @@
279c7dc0121b3b7e209b09c98d10f17f gift-gnutella-0.0.11.tar.bz2 279c7dc0121b3b7e209b09c98d10f17f gift-gnutella-0.0.11.tar.bz2
039f5015678343866c0dfeb7ffd9536a gwebcaches.gzip
9524adbddc9b4758048a84d51ff5b3f8 hostiles.txt.gzip
ab10b8d98d655e8ca81f50c4ad0564ee nodes.gzip

View File

@ -7,12 +7,18 @@
name=gift-gnutella name=gift-gnutella
version=0.0.11 version=0.0.11
release=1 release=1
source=(http://dl.sourceforge.net/sourceforge/gift/gift-gnutella-$version.tar.bz2) source=(http://dl.sourceforge.net/sourceforge/gift/gift-gnutella-$version.tar.bz2 \
http://update.kceasy.com/update/gnutella/nodes.gzip \
http://update.kceasy.com/update/gnutella/hostiles.txt.gzip \
http://update.kceasy.com/update/gnutella/gwebcaches.gzip)
build() { build() {
cd gift-gnutella-$version cd gift-gnutella-$version
./configure --prefix=/usr ./configure --prefix=/usr
make make
make DESTDIR=$PKG install make DESTDIR=$PKG install
zcat ../nodes.gzip >> $PKG/usr/share/giFT/Gnutella/nodes
zcat ../hostiles.txt.gzip >> $PKG/usr/share/giFT/Gnutella/hostiles.txt
zcat ../gwebcaches.gzip >> $PKG/usr/share/giFT/Gnutella/gwebcaches
} }