Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.4-EOL/net
In directory vz-cvs-3.sog:/tmp/cvs-serv11641

Added Files:
        gnewspost.info gnewspost.patch gkermit.info gnut.info 
Log Message:
sync. w/ 10.!4/stable, validated on powerpc-darwin8


--- NEW FILE: gnewspost.info ---
Package: gnewspost
Version: 0.6
Revision:100 
Distribution: 10.4, 10.5
Source: http://www.vectorstar.net/~ash/cgi-bin/retrieve.pl?%n-%v.tar.gz
Source-MD5: 3fc230c8db778f0e1a683425bfa5722c
SourceRename: %n-%v.tar.gz
UpdateConfigGuess: true
BuildDepends: orbit-dev, glib, gnome-libs-dev, gnome-libs, imlib, gtk+, esound, 
libgettext3-dev, audiofile, automake1.11, fink (>= 0.24.12-1)
Depends: newspost, gnome-libs-shlibs, imlib-shlibs, orbit-shlibs, gtk+-shlibs, 
cfv
PatchFile: %n.patch
PatchFile-MD5: 67905045080221d2295654ea24e17859
CompileScript: <<
perl -pi.bak -e 's/\"2.0\"/\"2.1.1\"/g' src/gnewspost.h
head -n 35 src/%n.c > LICENSE
#ln -sf /usr/share/automake-1.6/missing missing
#ln -sf /usr/share/automake-1.6/install-sh install-sh
#ln -sf /usr/share/automake-1.6/mkinstalldirs mkinstalldirs
./configure %c
make
<<
InstallScript: make install DESTDIR=%d
Description: GUI for newspost USENET binary poster
DescDetail: <<
gnewspost is a GNOME frontend to the command-line USENET binary 
autoposter "newspost". It is similar to "PowerPost" for windows.
<<
DescPort: <<
Fix crash bug in file dialog
Fix file size code
Fix version check 
/usr/share/automake-1.6 does not exist on Leopard. Bdep on Fink automake1.6.
--dmacks swapped in automake1.11; same build-time transcript
<<
DocFiles: AUTHORS ChangeLog LICENSE HACKING NEWS README TODO
License: BSD
Maintainer: Ben Hines <[email protected]>
Homepage: http://www.vectorstar.net/~ash/gnewspost.html

--- NEW FILE: gnewspost.patch ---
--- gnewspost-0.6/src/app.c     Sun Jul 28 21:10:11 2002
+++ gnewspost-0.6/src/app.c     Tue Apr 27 22:02:19 2004
@@ -1013,11 +1013,11 @@
                return 0;
 
        if (sb.st_size > 1024 && sb.st_size < 1048576)
-               snprintf(buf, 8, "%dK", sb.st_size / 1024);
+               snprintf(buf, 8, "%dK", (int) sb.st_size / 1024);
        else if (sb.st_size >= 1048576)
                snprintf(buf, 8, "%.2fM", (float) sb.st_size / 1024 / 1024);
        else
-               snprintf(buf, 8, "%dB", sb.st_size);
+               snprintf(buf, 8, "%dB", (int) sb.st_size);
 
        return buf;
 }
--- gnewspost-0.6/src/app.c     Sun Jul 28 21:10:11 2002
+++ gnewspost-0.6/src/app.c     Tue Apr 27 22:50:47 2004
@@ -737,7 +737,7 @@
 {
        Prefs *p;
        GList *sel_list, *node;
-       gchar *titles[6];
+       gchar *titles[3];
        gchar *dir, *file, *tmp;
        gint  i;
 

--- NEW FILE: gkermit.info ---
Package: gkermit
Version: 1.00
Revision: 2
Source: ftp://kermit.columbia.edu/kermit/archives/gku100.tar.gz
Source-MD5: 1c10dca56fdf74a7bea1448815db2bc3
SourceDirectory: .
Suggests: minicom
CompileScript: make
InstallScript: <<
mkdir -p %i/bin
cp gkermit %i/bin/
<<
DocFiles: ANNOUNCE COPYING README
Description: Simple, Portable, Free File Transfer Software
DescDetail: <<
G-Kermit is a Unix program for transferring files with the Kermit
protocol. G-Kermit is a product of the Kermit Project at Columbia
University in New York city.
<<
License: GPL
Maintainer: Chris Zubrzycki <[email protected]>
Homepage: http://www.columbia.edu/kermit/gkermit.html
#Source-MD5: aea4fa728b9981fce41c9f2c635f2e05 

--- NEW FILE: gnut.info ---
Package: gnut
Version: 0.4.28
Revision: 1005
Maintainer: None <[email protected]>
Source: mirror:sourceforge:fink/direct_download/source/%n-%v.tar.gz
Source-MD5: bade24c9838d390de41f5ea0c80dc22f
Depends: readline5-shlibs (>= 5.0-1004), libncurses5-shlibs (>= 
5.4-20041023-1006)
BuildDepends: readline5 (>= 5.0-1004), libncurses5 (>= 5.4-20041023-1006)
PatchScript: <<
  perl -pi.bak1 -e 's/^(  {".*)"$/\1\nMULTILINE_BEGIN/; 
s/^"(.*)/MULTILINE_END\n\1/' src/cli.c
  perl -pi.bak2 -e 's/.*/"$&\\n"/ if /MULTILINE_BEGIN/ .. /MULTILINE_END/; 
s/MULTILINE_.*/\\n"/' src/cli.c

  ln -s %p/lib/libncurses.dylib libtermcap.dylib
<<
SetLDFLAGS: -L%b
CompileScript: <<
  printf | ./configure
  make
<<
DocFiles: AUTHORS ChangeLog COPYING HACKING NEWS README TODO doc/TUTORIAL 
Description: Console based gnutella client
DescUsage: <<
Type 'gnut' to run the program. At the gnut command prompt, type 'help' for
a list of commands. Type 'help commandname' (example 'help find') for a
more complete description of one command.
<<
DescPackaging: <<
  Originally packaged by Matt Stephenson.
<<
DescPort: <<
  dmacks converted multiline string literals into embedded newlines so
  that we can build with modern compilers. gcc3.1 reports:
    cli2.c:95: warning: ANSI C forbids newline in string constant
    cli2.c:96:1: warning: multi-line string literals are deprecated

  Some of fink's libncurses5 packages are missing symlink for
  libtermcap.dylib -> libncurses.dylib so we make it locally.
<<
License: GPL
Homepage: http://www.gnutelliums.com/linux_unix/gnut


------------------------------------------------------------------------------
Better than sec? Nothing is better than sec when it comes to
monitoring Big Data applications. Try Boundary one-second 
resolution app monitoring today. Free.
http://p.sf.net/sfu/Boundary-dev2dev
_______________________________________________
Fink-commits mailing list
[email protected]
http://news.gmane.org/gmane.os.apple.fink.cvs

Reply via email to