[cvs] dists/10.7/stable/main/finkinfo/languages tkimg.info,1.1,1.2

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv22148

Modified Files:
tkimg.info 
Log Message:
'make install' recompiles some .dylib, so need to hack the install_name *after* 
that (in the %i) rather than before (in the %b); fix dependencies (based on 
otool-L on 10.8); lots of weird artifacts in the installed files (*Config.sh 
point to %b) but at least now it actually compiles and passes -m


Index: tkimg.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages/tkimg.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- tkimg.info  23 Jan 2012 23:54:00 -  1.1
+++ tkimg.info  7 Jul 2013 06:11:37 -   1.2
@@ -1,7 +1,7 @@
 Info2: 
 Package: tkimg 
 Version: 1.3 
-Revision: 4
+Revision: 5
 Description: Adds a lot of image formats to Tcl/Tk 
 DescDetail: 
 
@@ -10,7 +10,13 @@
 Maintainer: Steffen Schmidt steffen.schm...@tuebingen.mpg.de
 Source: mirror:sourceforge:%n/%n%v.tar.gz
 Source-MD5: 964a692db8a120dc5ed8779521a70bc8 
-BuildDepends: tcltk-dev, libjpeg8
+BuildDepends: 
+fontconfig2-dev (= 2.10.0-1),
+freetype219 (= 2.4.11-1),
+tcltk-dev,
+xft2-dev (= 2.2.0-1),
+x11-dev
+
 Depends: tcltk, %N-shlibs (= %v-%r)
 SourceDirectory: %n%v
 SetCPP: /usr/bin/cpp
@@ -23,17 +29,28 @@
 fi
 ./configure --prefix=%i --exec-prefix=%i --mandir=%p/share/man 
--infodir=%p/share/info --with-tcl=%p/lib --with-tk=%p/lib
 make
+
 
 InstallScript:
 #!/bin/zsh -evf
-foreach dylib in $( /bin/ls **/*.dylib ) 
-install_name_tool -id  %p/lib/Img%v/$(basename $dylib)   $dylib
-end
 make install  
+pushd %i/lib
+# 'foreach ... ls %i/lib/**/*.dylib' risky if %i has whitespace
+foreach dylib in $( /bin/ls **/*.dylib ) 
+# 'make install' might recompile .dylib, so have to fix afterwards
+install_name_tool -id  %p/lib/Img%v/$(basename $dylib)   $dylib
+end
+popd
 
 DocFiles: README ANNOUNCE license.terms  
 SplitOff: 
 Package: %N-shlibs
+Depends: 
+fontconfig2-shlibs (= 2.10.0-1),
+   freetype219-shlibs (= 2.4.11-1),
+   xft2-shlibs (= 2.2.0-1),
+   x11-shlibs
+
 Files:
 lib/Img%v/libjpegtcl1.0.dylib   
 lib/Img%v/libpngtcl1.2.6.dylib  


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods net-server-pm.patch, NONE, 1.1 net-server-pm.info, 1.3, 1.4

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23974/10.4-stable/main/finkinfo/libs/perlmods

Modified Files:
net-server-pm.info 
Added Files:
net-server-pm.patch 
Log Message:
fix test failure


--- NEW FILE: net-server-pm.patch ---
diff -Nurd -x'*~' Net-Server-2.007.orig/t/SSL_test.t 
Net-Server-2.007/t/SSL_test.t
--- Net-Server-2.007.orig/t/SSL_test.t  2013-01-10 02:25:33.0 -0500
+++ Net-Server-2.007/t/SSL_test.t   2013-07-07 03:01:26.0 -0400
@@ -53,6 +53,7 @@
 
 use_ok qw(Net::Server::Proto::SSL) or exit;
 require Net::Server;
+use IO::Socket::SSL 1.31;
 @Net::Server::Test::ISA = qw(Net::Server);
 
 sub accept {
@@ -76,6 +77,7 @@
 my $remote = IO::Socket::SSL-new(
 PeerAddr = $env-{'hostname'},
 PeerPort = $env-{'ports'}-[0],
+SSL_verify_mode = SSL_VERIFY_NONE,
 ) || die Couldn't open child to sock: $!;
 
 my $line = $remote;

Index: net-server-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/net-server-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- net-server-pm.info  30 May 2013 09:05:40 -  1.3
+++ net-server-pm.info  7 Jul 2013 07:04:51 -   1.4
@@ -15,6 +15,10 @@
 Source2: http://www.gnu.org/licenses/gpl-3.0.txt
 Source2-MD5: d32239bcb673463ab874e80d47fae504
 
+# Fix t/SSL_test.t: https://rt.cpan.org/Public/Bug/Display.html?id=86707
+PatchFile: %{ni}.patch
+PatchFile-MD5: 36bc6e5f5099e1852ea0ab39dae44891
+
 # various submodules have possible runtime use of other packages,
 # but not adding all their deps (users can install them if they
 # have need for these features/components) -- dmacks
@@ -23,6 +27,10 @@
perl%type_pkg[perl]-core
 
 
+InfoTest: 
+   TestDepends: io-socket-ssl-pm%type_pkg[perl] (= 1.31)
+
+
 UpdatePOD: true
 
 InstallScript: 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods net-server-pm.patch, NONE, 1.1 net-server-pm.info, 1.3, 1.4

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv23974/stable/main/finkinfo/libs/perlmods

Modified Files:
net-server-pm.info 
Added Files:
net-server-pm.patch 
Log Message:
fix test failure


--- NEW FILE: net-server-pm.patch ---
diff -Nurd -x'*~' Net-Server-2.007.orig/t/SSL_test.t 
Net-Server-2.007/t/SSL_test.t
--- Net-Server-2.007.orig/t/SSL_test.t  2013-01-10 02:25:33.0 -0500
+++ Net-Server-2.007/t/SSL_test.t   2013-07-07 03:01:26.0 -0400
@@ -53,6 +53,7 @@
 
 use_ok qw(Net::Server::Proto::SSL) or exit;
 require Net::Server;
+use IO::Socket::SSL 1.31;
 @Net::Server::Test::ISA = qw(Net::Server);
 
 sub accept {
@@ -76,6 +77,7 @@
 my $remote = IO::Socket::SSL-new(
 PeerAddr = $env-{'hostname'},
 PeerPort = $env-{'ports'}-[0],
+SSL_verify_mode = SSL_VERIFY_NONE,
 ) || die Couldn't open child to sock: $!;
 
 my $line = $remote;

Index: net-server-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/net-server-pm.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- net-server-pm.info  30 May 2013 09:05:40 -  1.3
+++ net-server-pm.info  7 Jul 2013 07:04:51 -   1.4
@@ -14,6 +14,10 @@
 Source2: http://www.gnu.org/licenses/gpl-3.0.txt
 Source2-MD5: d32239bcb673463ab874e80d47fae504
 
+# Fix t/SSL_test.t: https://rt.cpan.org/Public/Bug/Display.html?id=86707
+PatchFile: %{ni}.patch
+PatchFile-MD5: 36bc6e5f5099e1852ea0ab39dae44891
+
 # various submodules have possible runtime use of other packages,
 # but not adding all their deps (users can install them if they
 # have need for these features/components) -- dmacks
@@ -22,6 +26,10 @@
perl%type_pkg[perl]-core
 
 
+InfoTest: 
+   TestDepends: io-socket-ssl-pm%type_pkg[perl] (= 1.31)
+
+
 UpdatePOD: true
 
 InstallScript: 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci heatwizard.info,NONE,1.1

2013-07-07 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv2002

Added Files:
heatwizard.info 
Log Message:
push heatwizard to 10.7

--- NEW FILE: heatwizard.info ---
Info2: 
Package: heatwizard-%type_pkg[uitype]
Type: uitype (cli gui)
#Type: uitype (cli gui)
Version: 0.3.2
Revision: 1
Description: Thermocouple to temperature converter
BuildDepends: fpc, (%type_pkg[uitype] = gui) lazarus-aqua
License: GPL

# Unpack Phase:
Source: mirror:sourceforge:heatwizard/%v/HeatWizard-%v.tar.bz2
Source-MD5: 1aba650305778b35a3ee165b76fd6bbe
SourceDirectory: .

# Compile Phase (NOTE: there is no configure):
CompileScript: 
#!/bin/sh -ev
  make %type_raw[uitype]
  if [ %type_raw[uitype] == gui ]; then
make macosx-app
  fi


# Install Phase:
InstallScript: 
#!/bin/sh -ev
  if   [ %type_raw[uitype] == cli ]; then
install -d  %i/bin
install -m 755 heatwizard   %i/bin
install -d  %i/share/man/man1
install -m 644 heatwizard.1 %i/share/man/man1
  else 
install -d   %i/Applications
mv 'Heat Wizard.app' %i/Applications/
  fi


PostInstScript: 
  if [ %type_raw[uitype] == gui ]; then
if ! test -e /Applications/Fink; then
  install -d -m 755 /Applications/Fink
fi
ln -s '%p/Applications/Heat Wizard.app' /Applications/Fink/
  fi


PostRmScript: 
  if [ %type_raw[uitype] == gui ]; then
rm -f '/Applications/Fink/Heat Wizard.app'
  fi


DocFiles: COPYING GPL* README

DescDetail: 
Heat Wizard converts the voltage of a thermocouple to the 
corresponding temperature and vice versa. The conversion takes 
into account the temperature of a reference thermocouple.


DescUsage: 
For hints about the command line tool type heatwizard or read its man page.
Start the GUI program by a double click on the icon in /Applications/Fink


Homepage: http://heatwizard.sourforge.net/
Maintainer: Karl-Michael Schindler karl-michael.schind...@web.de


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/text hspell.info,1.1,1.2

2013-07-07 Thread Chris Zubrzycki
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/text
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv13066

Modified Files:
hspell.info 
Log Message:
Fix breaking for gnu sort when LC_* is unset by fink


Index: hspell.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/text/hspell.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- hspell.info 1 Aug 2011 16:12:32 -   1.1
+++ hspell.info 7 Jul 2013 13:18:10 -   1.2
@@ -9,6 +9,10 @@
 SetMAKEFLAGS: -j1
 
 ConfigureParams: --enable-fatverb --enable-aspell --enable-linginfo 
--mandir=%p/share/man
+CompileScript: 
+./configure %c
+LC_ALL=C make
+
 InstallScript: make install DESTDIR=%d
 
 DocFiles: COPYING INSTALL LICENSE README WHATSNEW


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods data-uuid-pm.info, 1.5, 1.6 pod-spell-pm.info, 1.2, 1.3

2013-07-07 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv18107

Modified Files:
data-uuid-pm.info pod-spell-pm.info 
Log Message:
New upstream version.

Index: pod-spell-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/pod-spell-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pod-spell-pm.info   30 Jun 2013 10:58:45 -  1.2
+++ pod-spell-pm.info   7 Jul 2013 15:08:23 -   1.3
@@ -1,5 +1,5 @@
 Package: pod-spell-pm
-Version: 1.04
+Version: 1.05
 Revision: 1
 License: Artistic/GPL
 Description: Formatter for spellchecking Pod
@@ -7,7 +7,7 @@
 Homepage: http://search.cpan.org/dist/Pod-Spell/
 
 Source: mirror:cpan:modules/by-module/Pod/Pod-Spell-%v.tar.gz
-Source-MD5: 8e74b6ef83c9582fcd14d503557d7671
+Source-MD5: 6346271b76f90c66b191ae58bd235f84
 
 Type: perl
 UpdatePOD: true

Index: data-uuid-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/data-uuid-pm.info,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- data-uuid-pm.info   30 Jun 2013 10:58:44 -  1.5
+++ data-uuid-pm.info   7 Jul 2013 15:08:23 -   1.6
@@ -1,6 +1,6 @@
 Info2: 
 Package: data-uuid-pm%type_pkg[perl]
-Version: 1.218
+Version: 1.219
 Revision: 1
 
 Type: perl (5.12.3 5.12.4)
@@ -16,7 +16,7 @@
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/R/RJ/RJBS/Data-UUID-%v.tar.gz
-Source-MD5: c5035498f4cdaadae3c31d565f5179bd
+Source-MD5: 8ca1f802b40d9b563f4de26968677097
 
 # Compile Phase:
 CompileScript: 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/libs/perlmods data-uuid-pm.info, 1.11, 1.12 pod-spell-pm.info, 1.2, 1.3

2013-07-07 Thread Daniel Johnson
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv18123

Modified Files:
data-uuid-pm.info pod-spell-pm.info 
Log Message:
New upstream version.

Index: pod-spell-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/pod-spell-pm.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- pod-spell-pm.info   4 Jul 2013 00:49:10 -   1.2
+++ pod-spell-pm.info   7 Jul 2013 15:08:43 -   1.3
@@ -1,5 +1,5 @@
 Package: pod-spell-pm
-Version: 1.04
+Version: 1.05
 Revision: 1
 License: Artistic/GPL
 Description: Formatter for spellchecking Pod
@@ -7,7 +7,7 @@
 Homepage: http://search.cpan.org/dist/Pod-Spell/
 
 Source: mirror:cpan:modules/by-module/Pod/Pod-Spell-%v.tar.gz
-Source-MD5: 8e74b6ef83c9582fcd14d503557d7671
+Source-MD5: 6346271b76f90c66b191ae58bd235f84
 
 Type: perl
 UpdatePOD: true

Index: data-uuid-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/libs/perlmods/data-uuid-pm.info,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- data-uuid-pm.info   6 Jul 2013 01:30:33 -   1.11
+++ data-uuid-pm.info   7 Jul 2013 15:08:43 -   1.12
@@ -1,6 +1,6 @@
 Info2: 
 Package: data-uuid-pm%type_pkg[perl]
-Version: 1.218
+Version: 1.219
 Revision: 1
 Distribution: (%type_pkg[perl] = 586) 10.5
 Type: perl (5.8.6 5.8.8 5.10.0)
@@ -16,7 +16,7 @@
 
 # Unpack Phase:
 Source: mirror:cpan:authors/id/R/RJ/RJBS/Data-UUID-%v.tar.gz
-Source-MD5: c5035498f4cdaadae3c31d565f5179bd
+Source-MD5: 8ca1f802b40d9b563f4de26968677097
 
 # Compile Phase:
 CompileScript: 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo locale-textdomain-pm.info, NONE, 1.1 locale-textdomain-pm.patch, NONE, 1.1

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26758/experimental/dmacks/finkinfo

Added Files:
locale-textdomain-pm.info locale-textdomain-pm.patch 
Log Message:
from 10.[78]

--- NEW FILE: locale-textdomain-pm.patch ---
diff -ru libintl-perl-1.20.orig/Makefile.PL libintl-perl-1.20/Makefile.PL
--- libintl-perl-1.20.orig/Makefile.PL  2009-06-24 06:53:30.0 -0400
+++ libintl-perl-1.20/Makefile.PL   2012-02-02 17:23:54.0 -0500
@@ -87,7 +87,7 @@
 }
 EOF
 
-my $cc = $Config{cc};
+my $cc = 'gcc -IFINKPATH/include -LFINKPATH/lib';
 
 print STDERR Checking whether we can compile the XS version ... ;
 local *HANDLE;
diff -ru libintl-perl-1.20.orig/gettext_xs/Makefile.PL 
libintl-perl-1.20/gettext_xs/Makefile.PL
--- libintl-perl-1.20.orig/gettext_xs/Makefile.PL   2009-06-23 
03:04:48.0 -0400
+++ libintl-perl-1.20/gettext_xs/Makefile.PL2012-02-02 17:22:15.0 
-0500
@@ -38,7 +38,8 @@
 ),
 PREREQ_PM = { File::Spec = 0 },
PL_FILES= {},
-   LIBS = ['-lintl -liconv'],
+   LIBS = ['-LFINKPATH/lib -lintl -liconv'],
+   INC = '-IFINKPATH/include',
 );
 
 __END__

--- NEW FILE: locale-textdomain-pm.info ---
Info2: 
Package: locale-textdomain-pm%type_pkg[perl]
Version: 1.20
Revision: 3
Depends: perl%type_pkg[perl]-core, libgettext8-shlibs, libiconv
Builddepends: fink (= 0.24.12), libgettext8-dev, libiconv-dev
Replaces: libintl-pm%type_pkg[perl]
Source: mirror:cpan:authors/id/G/GU/GUIDO/libintl-perl-%v.tar.gz
Source-MD5: cb36f58a7d2e15974f25b35381548b1b
Type: perl (5.12.3 5.12.4)

PatchFile: %{ni}.patch
PatchFile-MD5: 81cabb1a3814d51dc64a7cdd286fe130
PatchScript: sed s|FINKPATH|%p|g  %{PatchFile} | patch -p1

InstallScript: 
  %{default_script}
  mv %i/share/man %i/lib/perl5/%type_raw[perl]

DocFiles: README FAQ
UpdatePOD: true
Description: Perl module for string internationalization
DescDetail: 
This package is an internationalization library for Perl
that aims to be compatible with the Uniforum message translations
system as implemented for example in GNU gettext.

This package is also called: libintl-perl[-xs]. It installs the native
gettext_xs extension.


DescPackaging: 
Former maintainer: Matthias Ringwald frec...@users.sourceforge.net

libintl not found during linking so gettext_xs not build properly
Added FINKPATH/lib to LIBS in gettext_xs/Makefile.PL


License: Artistic
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://freshmeat.net/projects/libintl-perl




--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] experimental/dmacks/finkinfo locale-textdomain-pm.info, 1.1, 1.2 locale-textdomain-pm.patch, 1.1, 1.2

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/experimental/dmacks/finkinfo
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv26900/experimental/dmacks/finkinfo

Modified Files:
locale-textdomain-pm.info locale-textdomain-pm.patch 
Log Message:
new version (fails selftests)

Index: locale-textdomain-pm.patch
===
RCS file: 
/cvsroot/fink/experimental/dmacks/finkinfo/locale-textdomain-pm.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- locale-textdomain-pm.patch  7 Jul 2013 18:02:41 -   1.1
+++ locale-textdomain-pm.patch  7 Jul 2013 18:03:41 -   1.2
@@ -1,25 +1,42 @@
-diff -ru libintl-perl-1.20.orig/Makefile.PL libintl-perl-1.20/Makefile.PL
 libintl-perl-1.20.orig/Makefile.PL 2009-06-24 06:53:30.0 -0400
-+++ libintl-perl-1.20/Makefile.PL  2012-02-02 17:23:54.0 -0500
-@@ -87,7 +87,7 @@
+diff -Nurd -x'*~' libintl-perl-1.23.orig/Makefile.PL 
libintl-perl-1.23/Makefile.PL
+--- libintl-perl-1.23.orig/Makefile.PL 2013-01-14 11:50:32.0 -0500
 libintl-perl-1.23/Makefile.PL  2013-07-05 07:01:44.0 -0400
+@@ -95,12 +95,15 @@
+ my $build_gettext_xs = ac_try_link $c, Checking whether we can compile the 
XS version;
+ unless ($build_gettext_xs) {
+ $build_gettext_xs = ac_try_link $c,   Trying again with -lintl, 
-lintl;
++$ENV{LDFLAGS} .=  -lintl if $build_gettext_xs;
+ }
+ unless ($build_gettext_xs) {
+ $build_gettext_xs = ac_try_link $c,   Trying again with -lintl -liconv, 
-lintl, -liconv;
++$ENV{LDFLAGS} .=  -lintl -liconv if $build_gettext_xs;
+ }
+ unless ($build_gettext_xs) {
+ $build_gettext_xs = ac_try_link $c,   Trying again with -liconv, 
-liconv;
++$ENV{LDFLAGS} .=  -liconv if $build_gettext_xs;
  }
- EOF
  
--my $cc = $Config{cc};
-+my $cc = 'gcc -IFINKPATH/include -LFINKPATH/lib';
+ unless ($build_gettext_xs) {
+@@ -124,7 +127,9 @@
+ close HANDLE or die cannot close file 'gettest.c': $!\n;
  
- print STDERR Checking whether we can compile the XS version ... ;
- local *HANDLE;
-diff -ru libintl-perl-1.20.orig/gettext_xs/Makefile.PL 
libintl-perl-1.20/gettext_xs/Makefile.PL
 libintl-perl-1.20.orig/gettext_xs/Makefile.PL  2009-06-23 
03:04:48.0 -0400
-+++ libintl-perl-1.20/gettext_xs/Makefile.PL   2012-02-02 17:22:15.0 
-0500
-@@ -38,7 +38,8 @@
+   my @cmd = $Config{cc};
++push @cmd, $ENV{CPPFLAGS} if exists $ENV{CPPFLAGS};
+ push @cmd, $Config{ccflags};
++push @cmd, $ENV{LDFLAGS} if exists $ENV{LDFLAGS};
+ push @cmd, $Config{ldflags};
+ push @cmd, $Config{perllibs};
+   push @cmd, @options;
+diff -Nurd -x'*~' libintl-perl-1.23.orig/gettext_xs/Makefile.PL 
libintl-perl-1.23/gettext_xs/Makefile.PL
+--- libintl-perl-1.23.orig/gettext_xs/Makefile.PL  2013-01-14 
11:50:32.0 -0500
 libintl-perl-1.23/gettext_xs/Makefile.PL   2013-07-05 06:58:05.0 
-0400
+@@ -37,7 +37,8 @@
  ),
  PREREQ_PM = { File::Spec = 0 },
PL_FILES= {},
 -  LIBS = ['-lintl -liconv'],
-+  LIBS = ['-LFINKPATH/lib -lintl -liconv'],
-+  INC = '-IFINKPATH/include',
++  LIBS = [(exists $ENV{LDFLAGS}  $ENV{LDFLAGS})],
++  INC = (exists $ENV{CPPFLAGS}  $ENV{CPPFLAGS}),
  );
  
  __END__

Index: locale-textdomain-pm.info
===
RCS file: /cvsroot/fink/experimental/dmacks/finkinfo/locale-textdomain-pm.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- locale-textdomain-pm.info   7 Jul 2013 18:02:41 -   1.1
+++ locale-textdomain-pm.info   7 Jul 2013 18:03:41 -   1.2
@@ -1,23 +1,30 @@
 Info2: 
 Package: locale-textdomain-pm%type_pkg[perl]
-Version: 1.20
-Revision: 3
+Version: 1.23
+Revision: 1
 Depends: perl%type_pkg[perl]-core, libgettext8-shlibs, libiconv
 Builddepends: fink (= 0.24.12), libgettext8-dev, libiconv-dev
 Replaces: libintl-pm%type_pkg[perl]
 Source: mirror:cpan:authors/id/G/GU/GUIDO/libintl-perl-%v.tar.gz
-Source-MD5: cb36f58a7d2e15974f25b35381548b1b
+Source-MD5: 2e79dc842af1c9efc14fbe6664dc89bf
 Type: perl (5.12.3 5.12.4)
 
 PatchFile: %{ni}.patch
-PatchFile-MD5: 81cabb1a3814d51dc64a7cdd286fe130
-PatchScript: sed s|FINKPATH|%p|g  %{PatchFile} | patch -p1
+PatchFile-MD5: 693f500ac1d335c7d5c6a116ae967e25
+
+CompileScript: 
+#!/bin/sh -ev
+   %{default_script}
+
+   # make sure we built the xs version
+   test -e blib/arch/auto/Locale/gettext_xs/gettext_xs.bundle
+
 
 InstallScript: 
   %{default_script}
   mv %i/share/man %i/lib/perl5/%type_raw[perl]
 
-DocFiles: README FAQ
+DocFiles: COPYING.LESSER ChangeLog Credits FAQ NEWS README THANKS TODO
 UpdatePOD: true
 Description: Perl module for string internationalization
 DescDetail: 
@@ -32,8 +39,11 @@
 DescPackaging: 
Former maintainer: Matthias Ringwald frec...@users.sourceforge.net
 
-libintl not found during linking so gettext_xs not build properly
-Added 

[cvs] dists/10.7/stable/main/finkinfo/libs/perlmods cgi-application-pm.info, 1.4, 1.5

2013-07-07 Thread Daniel Macks
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv27375

Modified Files:
cgi-application-pm.info 
Log Message:
whoops, class-isa-pm is varianted


Index: cgi-application-pm.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/perlmods/cgi-application-pm.info,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- cgi-application-pm.info 5 Jul 2013 12:10:35 -   1.4
+++ cgi-application-pm.info 7 Jul 2013 18:08:28 -   1.5
@@ -1,14 +1,14 @@
 Info2: 
 Package: cgi-application-pm%type_pkg[perl]
 Version: 4.50
-Revision: 2
+Revision: 3
 ###
 BuildDepends: 
module-build-pm%type_pkg[perl]
 
 Depends: 
cgi-pm%type_pkg[perl] (= 3.16-1),
-   class-isa-pm,
+   class-isa-pm%type_pkg[perl],
html-template-pm,
perl%type_pkg[perl]-core
 


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods growl-py.info, 1.1, 1.2

2013-07-07 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv29820

Modified Files:
growl-py.info 
Log Message:
Update growl-py* to use setuptools-tng-py*

Also dropped the 10.4/10.5 variant line.


Index: growl-py.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods/growl-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- growl-py.info   5 Sep 2012 02:43:06 -   1.1
+++ growl-py.info   7 Jul 2013 19:00:52 -   1.2
@@ -1,12 +1,11 @@
 Info2: 
 Package: growl-py%type_pkg[python]
-Distribution: (%type_pkg[python] = 24) 10.4, (%type_pkg[python] = 24) 10.5
 Type: python (2.6 2.7)
 Version: 1.2.2
-Revision: 2
+Revision: 3
 
 Depends: python%type_pkg[python]
-BuildDepends: distribute-py%type_pkg[python] (= 0.6c2-1), fink (= 0.24.12)
+BuildDepends: setuptools-tng-py%type_pkg[python], fink (= 0.24.12)
 
 # Source: mirror:sourceforge:fink/growl-python-%v.tar.gz
 Source: http://www.ghz.cc/charles/growl-python-%v.tar.gz


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/libs/pythonmods tempita-py.info, 1.1, 1.2

2013-07-07 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30217/libs/pythonmods

Modified Files:
tempita-py.info 
Log Message:
Upgraded sqlalchemy-migrate-py and tempita-py to setuptools-tng-py


Index: tempita-py.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/libs/pythonmods/tempita-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- tempita-py.info 5 Sep 2012 02:43:06 -   1.1
+++ tempita-py.info 7 Jul 2013 19:08:39 -   1.2
@@ -2,7 +2,7 @@
 
 Package: tempita-py%type_pkg[python]
 Version: 0.5.1
-Revision: 1
+Revision: 2
 Description: Very small text templating language in Python
 DescDetail: 
 Tempita is a small templating language for text substitution.
@@ -18,7 +18,7 @@
 
 Type: python (2.6 2.7 3.1 3.2)
 Depends: python%type_pkg[python]
-BuildDepends: distribute-py%type_pkg[python]
+BuildDepends: setuptools-tng-py%type_pkg[python]
 
 CompileScript: 
  echo Skipping build


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/database sqlalchemy-migrate-py.info, 1.1, 1.2

2013-07-07 Thread Charles Lepple
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/database
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv30217/database

Modified Files:
sqlalchemy-migrate-py.info 
Log Message:
Upgraded sqlalchemy-migrate-py and tempita-py to setuptools-tng-py


Index: sqlalchemy-migrate-py.info
===
RCS file: 
/cvsroot/fink/dists/10.7/stable/main/finkinfo/database/sqlalchemy-migrate-py.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- sqlalchemy-migrate-py.info  7 Sep 2012 21:57:55 -   1.1
+++ sqlalchemy-migrate-py.info  7 Jul 2013 19:08:39 -   1.2
@@ -4,7 +4,7 @@
 GCC: 4.0
 
 Package: sqlalchemy-migrate-py%type_pkg[python]
-Version: 0.7.1
+Version: 0.7.2
 Revision: 1
 Description: Database schema migration for SQLAlchemy
 DescDetail: 
@@ -18,11 +18,11 @@
 
 
 Source: 
http://pypi.python.org/packages/source/s/sqlalchemy-migrate/sqlalchemy-migrate-%v.tar.gz
-Source-MD5: 023acd2cb74882597074768a0e84468a
+Source-MD5: 10382fda16f056491e671b5307dd6713
 
 Type: python (2.6 2.7 3.1 3.2)
 Depends: python%type_pkg[python], sqlalchemy-py%type_pkg[python], 
tempita-py%type_pkg[python], decorator-py%type_pkg[python]
-BuildDepends: distribute-py%type_pkg[python]
+BuildDepends: setuptools-tng-py%type_pkg[python]
 
 CompileScript: 
  echo Skipping build


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci heatwizard.info,1.1,1.2

2013-07-07 Thread K.-M. Schindler
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv31645

Modified Files:
heatwizard.info 
Log Message:
fix carbon compilation

Index: heatwizard.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/heatwizard.info,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- heatwizard.info 7 Jul 2013 09:54:32 -   1.1
+++ heatwizard.info 7 Jul 2013 19:44:43 -   1.2
@@ -3,7 +3,7 @@
 Type: uitype (cli gui)
 #Type: uitype (cli gui)
 Version: 0.3.2
-Revision: 1
+Revision: 2
 Description: Thermocouple to temperature converter
 BuildDepends: fpc, (%type_pkg[uitype] = gui) lazarus-aqua
 License: GPL
@@ -16,6 +16,7 @@
 # Compile Phase (NOTE: there is no configure):
 CompileScript: 
 #!/bin/sh -ev
+  sed -i.bak 's|LAZARUS_OPTIONS)|LAZARUS_OPTIONS) --cpu=i386|g' Makefile
   make %type_raw[uitype]
   if [ %type_raw[uitype] == gui ]; then
 make macosx-app


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/base debconf-10.6.info, 1.2, NONE fink-10.6.info, 1.42, NONE

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/base
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7323

Removed Files:
debconf-10.6.info fink-10.6.info 
Log Message:
Not needed here.


--- fink-10.6.info DELETED ---

--- debconf-10.6.info DELETED ---


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/base debconf-10.6.info, 1.3, 1.4 fink-10.6.info, 1.43, 1.44

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/base
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7579

Added Files:
debconf-10.6.info fink-10.6.info 
Log Message:
Woops; local 10.5-EOL tree wasn't quite right.


--- NEW FILE: fink-10.6.info ---
Info4: 
Package: fink
Version: 0.35.0
Revision: 51
Distribution: 10.6
Depends: base-files
Recommends: 
 apt (= 0.5.4-41)

Conflicts: gcc3.1 (= 1175-6)
Replaces: gcc3.1 (= 1175-6)
Essential: yes
Source: mirror:custom:fink/%n-%v.tar.gz
Source-MD5: 97d877b8378b3f58872638f81bec8f80
NoSetPATH: true
BuildAsNobody: false
CompileScript: 
 ./pre-build-test.sh
 make test PREFIX=%p ARCHITECTURE=%m DISTRIBUTION=10.6
 ./setup.sh %p %m

InstallScript: 
 ./install.sh %i %m
 install -c -p -m 644 fink.shlibs %d/DEBIAN/shlibs

PostInstScript: 
 %p/lib/fink/postinstall.pl %m
 %p/bin/fink --no-use-binary-dist index

 # try to clean up left-overs from previous versions (old location)
 rm -f %p/var/db/fink.db
 rm -f %p/var/db/shlibs.db
 rm -f %p/var/lib/fink/fink.db

PreRmScript: 
 # clean up package indexes
 [ \! -d %p/var/lib/fink/finkinfodb ] || touch 
%p/var/lib/fink/finkinfodb/invalidate
 rm -f %p/var/lib/fink/index.db
 rm -f %p/var/lib/fink/index.db.lock
 rm -f %p/var/lib/fink/infolist
 rm -f %p/var/lib/fink/shlibs.db
 rm -f %p/var/lib/fink/shlibs.db.lock

#
Description: Open-source software package manager
DescPackaging: 
 Don't use mirror:sourceforge so that older package manager versions
 which do not know that mirror can still selfupdate.

 Must put make test before ./setup.sh %p %m, because make test runs
 the setup script itself, but pointed at the testing directory.
 The second run of setup.sh properly points fink at the installed
 configuration file.

 We are using Conflicts/Replaces against gcc3.1 so that the Fink gcc3.1 
 package is removed (in favor of an Apple-supplied gcc 3.1, represented
 by a virtual package).

DescDetail: 
fink is the Fink project's package manager. It is responsible for
downloading and compiling source and building binary packages from
it. Binary package handling is then delegated to dpkg.

License: GPL
Maintainer: Fink Core Group fink-c...@lists.sourceforge.net
Homepage: http://www.finkproject.org/
CustomMirror: 
Primary: http://downloads.sourceforge.net/
asi-JP: http://jaist.dl.sourceforge.net/sourceforge/
asi-TW: http://nchc.dl.sourceforge.net/sourceforge/
aus-AU: http://internode.dl.sourceforge.net/sourceforge/
aus-AU: http://transact.dl.sourceforge.net/sourceforge/
aus-AU: http://waix.dl.sourceforge.net/sourceforge/
eur-CH: http://puzzle.dl.sourceforge.net/sourceforge/
eur-CH: http://switch.dl.sourceforge.net/sourceforge/
eur-DE: http://dfn.dl.sourceforge.net/sourceforge/
eur-DE: http://mesh.dl.sourceforge.net/sourceforge/
eur-FR: http://ovh.dl.sourceforge.net/sourceforge/
eur-IE: http://heanet.dl.sourceforge.net/sourceforge/
eur-IT: http://garr.dl.sourceforge.net/sourceforge/
eur-NL: http://surfnet.dl.sourceforge.net/sourceforge/
eur-UK: http://kent.dl.sourceforge.net/sourceforge/
sam-BR: http://ufpr.dl.sourceforge.net/sourceforge/




--- NEW FILE: debconf-10.6.info ---
Package: debconf
Version: 1.4.51
Revision: 1321
BuildDepends: html2text, findutils, fink (= 0.24.12-1), libgettext8-dev, 
po-debconf
Depends: dialog (= 0.9b-20020814-1024), %n-english | %n-i18n, gettext-tools
Distribution: 10.6
Type: perl
Source: mirror:debian:/pool/main/d/debconf/%n_%v.tar.gz
Source-MD5: 4ef37a523a300d2c2e339ffebc5ba18f
SourceDirectory: %n
PatchFile: %n.patch
PatchFile-MD5: 9bbcb452287ef364f2121fcc9243a137
PatchScript: sed 's|@FINKPREFIX@|%p|g'  %{PatchFile} | patch -p1
TarFilesRename: debconf/debconf$:debconf/debconf.tmp
#UpdatePOD: true
CompileScript: echo Nothing to see here...  set -e  /usr/bin/make

InstallScript: 
#!/bin/sh -ev

  export PERL5LIB=.

  mkdir -p %i/etc/apt/apt.conf.d
  cp debian/apt.conf %i/etc/apt/apt.conf.d/70debconf

  /usr/bin/make install prefix=%i install-utils
  /usr/bin/make install prefix=%i install-i18n
  /usr/bin/make install prefix=%i install-rest

  # Ok, move debconf to its correct name
  mv %i/bin/debconf.tmp %i/bin/debconf

  # make sure scripts can find fink-installed perl modules even if run
  # under apt or dpkg (vs from user's fink-configured shell): insert
  # fink's perlmod path before first use of a Debconf perlmod--dmacks
  perl -pi -e 's,^(?=\s*use\s+Debconf),use lib %p/lib/perl5;\n, .. 0' 
%i/bin/* %i/sbin/*

  mkdir -p %d/DEBIAN
  po2debconf debian/templates  debian/templates.merged
  cp debian/config %d/DEBIAN
  cp debian/templates.merged %d/DEBIAN/templates

  # Install manpages
  mkdir -p %i/share/man/man1
  mkdir -p %i/share/man/man3
  mkdir -p %i/share/man/man5
  mkdir -p %i/share/man/man7
  mkdir -p %i/share/man/man8
  mkdir -p %i/share/man/fr/man1
  mkdir -p %i/share/man/fr/man3
  mkdir -p %i/share/man/fr/man5
  mkdir -p %i/share/man/fr/man7
  mkdir -p %i/share/man/fr/man8
  mkdir -p %i/share/man/pt_BR/man1
  mkdir -p %i/share/man/pt_BR/man3
  mkdir -p 

[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/x11 - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/x11

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11 added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/text - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/text
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/text

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/text added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/graphics - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/graphics
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/graphics

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/graphics added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/x11-wm - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11-wm
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/x11-wm

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11-wm added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/x11-system - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11-system
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/x11-system

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11-system 
added to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/crypto - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/crypto
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/crypto

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/crypto added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/languages - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/languages
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/languages

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/languages 
added to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/sound - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/sound
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/sound

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/sound added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/shells - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/shells
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/shells

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/shells added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/web - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/web
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/web

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/web added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/games - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/games
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/games

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/games added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/kde - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/kde
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/kde

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/kde added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/utils - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/utils
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/utils

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/utils added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/libs - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/libs

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/editors - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/editors
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/editors

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/editors added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/database - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/database
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/database

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/database added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/devel - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/devel
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/devel

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/devel added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/base - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/base
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/base

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/base added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/net - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/net
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/net

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/net added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/gnome - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/gnome
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/gnome

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/gnome added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/sci - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/sci
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv7704/sci

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/sci added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/kde/po - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/kde/po
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8142/po

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/kde/po added 
to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/libs/perlmods - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/perlmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8171/perlmods

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/perlmods 
added to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/libs/rubymods - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/rubymods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8171/rubymods

Log Message:
Directory /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/rubymods 
added to the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/libs/pythonmods - New directory

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/pythonmods
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8171/pythonmods

Log Message:
Directory 
/cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/libs/pythonmods added to 
the repository



--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/10.5-EOL/x11-system rman.info, NONE, 1.1 rman.patch, NONE, 1.1 tightvnc.info, NONE, 1.1 tightvnc.patch, NONE, 1.1 util-macros.info, NONE, 1.1 x11-xlocale-fix.info

2013-07-07 Thread Alexander Hansen
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/10.5-EOL/x11-system
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv8478/x11-system

Added Files:
rman.info rman.patch tightvnc.info tightvnc.patch 
util-macros.info x11-xlocale-fix.info xvfb-run.info 
xvfb-run.patch 
Log Message:
Fix metadata


--- NEW FILE: tightvnc.info ---
Package: tightvnc
Version: 1.3.8
Revision: 4
Source: mirror:sourceforge:vnc-tight/tightvnc-%v_unixsrc.tar.bz2
SourceDirectory: vnc_unixsrc
BuildDepends: libjpeg, x11-dev, xmkmf, fink (= 0.24.12-1)
Depends: x11, libjpeg-shlibs
PatchFile: %n.patch
PatchFile-MD5: 37de3f8a80cd45043824cf53daa5837d
UseMaxBuildJobs: false
CompileScript: 
#!/bin/sh -ev
 export PATH=%p/lib/xmkmf/bin:$PATH
 export IMAKEINCLUDE=-I%p/lib/X11/config
 xmkmf
 make World CC=cc LOCAL_LDFLAGS=-force_flat_namespace -L%p/lib 
EXTRAINCLUDE=-I%p/include
 pushd Xvnc
   unset IMAKEINCLUDE
   ./configure %c
   make
 popd

InstallScript: 
 mkdir -p %i/bin
 mkdir -p %i/share/vnc/classes
 mkdir -p %i/share/man/man1
 ./vncinstall %i/bin %i/share/man
 cp ./classes/* %i/share/vnc/classes

License: GPL
DocFiles: LICENCE.TXT README ChangeLog WhatsNew
Description: Enhanced version of VNC
DescDetail: 
Installs vnc with various encoding enhancements, plus
addition of '-tunnel' option to viewer.

DescPort: 
Uses Imake. 
Requires XFree86 development stuff (Xprog.tgz), and perl.
#Includes tight encoding patches.
User must add /usr/X11R6/bin to PATH in order to run vncserver.
The -localhost and -inetd options for Xvnc are broken on MacOS X/Darwin.
Includes mini http server and java applet for remote access via a web browser.
Detailed usage instructions at http://www.uk.research.att.com/vnc.

Fix some implicit declarations of system functions.

Remove Xos.h includes that don't seem to work (too much fiddling with
tokens earlier?) and aren't needed (re-add in specific .c if we find
implicit declarations).

Fix fink-path flag-passing for compiler.

Darwin doesn't have libcrypt (and doesn't seem to need it)

Conflicts: vnc
Replaces: vnc
Provides: vnc
Maintainer: Jack Fink jackf...@users.sourceforge.net
Homepage: http://www.tightvnc.com
Source-MD5: 9b9b0465834289d1b7899982c0096440

--- NEW FILE: util-macros.info ---
Package: util-macros
Version: 1.17
Revision: 1
BuildDependsOnly: true
Depends: pkgconfig
Source:http://xorg.freedesktop.org/releases/individual/util/util-macros-%v.tar.bz2
Source-MD5: 4f41667e1bf4938bb2b24fa09d517f77
DocFiles: COPYING ChangeLog README
DescPackaging: 
Yes, it actually wants to use its INSTALL at runtime

Description: Autconf macros for building xorg components
License: BSD
Maintainer: Daniel Macks dma...@netspace.org
Homepage: http://cgit.freedesktop.org/xorg/util/macros

--- NEW FILE: xvfb-run.info ---
Package: xvfb-run
Version: 1.4.2
Revision: 3
Source: 
http://patch-tracker.debian.org/patch/debianonly/dl/xorg-server/2:%v-10.lenny4/debian-dir%%20only%%20changes
SourceRename: xorg-server_%v-10.lenny4.debian-only-changes.diff
Source-MD5: 6e67c13a732a29318330f9e605c6e2a8
NoSourceDirectory: true
Depends: 
getoptbin,
x11

PatchFile: %n.patch
PatchFile-MD5: 91626975232b1f192939d45c6ba0037f
PatchScript: 
patch -p1  xorg-server_%v-10.lenny4.debian-only-changes.diff
%{default_script}

CompileScript: #
InstallScript: 
mkdir -p %i/bin
install -m0755 debian/local/xvfb-run %i/bin
mkdir -p %i/share/man/man1
install -m0644 debian/local/xvfb-run.1 %i/share/man/man1

DocFiles: debian/copyright
DescPort: 
darwin-specific patch from:
http://www.hexten.net/wiki/?title=Patch_xvfb-run_for_Mac_OS_X

DescPackaging: 
Script is apparently a debian add-on (various websites say
it's standard part of x.org?)

Needs GNU getopt; patch to avoid needing GNU fmt (coreutils)

Description: Run x11 clients on headless machine
Homepage: http://packages.debian.org/xvfb
License: BSD
Maintainer: Daniel Macks dma...@netspace.org

--- NEW FILE: rman.info ---
Package: rman
Version: 3.1  
Revision: 1
#Distribution: 10.4, 10.5
Description: Generalized filter for UNIX manual pages
DescDetail: 
Takes as input man pages for a variety of UNIX flavors and produces as
output a variety of file formats.
PolyglotMan improves upon other man page filters in several ways: (1) its
analysis recognizes the structural pieces of man pages, enabling high 
quality output, (2) its modular structure permits easy augmentation of
output formats, (3) it accepts man pages formatted with the variant
macros of many different flavors of UNIX, and (4) it doesn't require
modification of or cooperation with any other program.

License: Artistic
Source: mirror:sourceforge:polyglotman/%n-%v.tar.gz
Source-MD5:62924b8f9773999b91450cc317f5ddb9
BuildDepends: fink (= 0.24.12)
PatchFile: %n.patch
PatchFile-MD5: 4f3a80b23240386c3a57aaa91cb73343
PatchScript: 
 sed 's|@PREFIX@|%i|g' %{PatchFile} rman.patch
 patch -p1 -l rman.patch

CompileScript: 

[cvs] dists/10.7/stable/main/finkinfo/languages llvm-gcc42.patch, NONE, 1.1

2013-07-07 Thread Jack Howarth
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17351

Added Files:
llvm-gcc42.patch 
Log Message:
add llvm-gcc42 package for xcode = 4.7

--- NEW FILE: llvm-gcc42.patch ---
--- gcc/local-alloc.c.orig  2010-01-08 11:32:10.0 -0800
+++ gcc/local-alloc.c   2013-01-11 01:18:55.0 -0800
@@ -899,7 +899,7 @@ update_equiv_regs (void)
  /* APPLE LOCAL begin 5695218 */
  if (reg_inheritance_matrix)
{
- int dstregno;
+ long dstregno;
if (REG_P (dest))
{
  dstregno = REGNO (dest);
@@ -2676,9 +2676,9 @@ static int
 reg_inheritance_1 (rtx *px, void *data)
 {
   rtx x = *px;
-  unsigned int srcregno, dstregno;
+  unsigned long srcregno, dstregno;
 
-  dstregno = (int)data;
+  dstregno = (long)data;
 #ifdef TARGET_386
   /*
 Ugly special case: When moving a DI/SI/mode constant into an FP
--- gcc/c-incpath.c.orig2009-02-14 20:17:54.0 -0800
+++ gcc/c-incpath.c 2013-01-11 01:23:23.0 -0800
@@ -179,7 +179,7 @@ add_standard_paths (const char *sysroot,
  char *str;
 
  /* Should this directory start with the sysroot?  */
- if (sysroot  p-add_sysroot)
+ if (sysroot  p-add_sysroot  strstr(p-fname, llvm-gcc42) == 
NULL)
 /* LLVM LOCAL begin sysroot */
 #ifdef ENABLE_LLVM
str = TARGET_BUILD_SYSROOT_PATH(sysroot, p-fname);
--- driverdriver.c.orig 2012-03-30 15:23:03.0 -0700
+++ driverdriver.c  2012-03-30 15:43:40.0 -0700
@@ -1599,7 +1599,7 @@ main (int argc, const char **argv)
 
   /* If more than one input files are supplied but only one output filename
 is present then IMA will be used.  */
-  if (num_infiles  1  !compile_only_request)
+  if (num_infiles != 1  !compile_only_request)
ima_is_used = 1;
 
   /* Linker wants to know this in case of multiple -arch.  */
--- driverdriver.c.orig 2011-04-25 21:09:34.0 -0700
+++ driverdriver.c  2013-01-11 01:14:57.0 -0800
@@ -123,12 +123,14 @@ struct arch_config_guess_map arch_config
   {ppc, powerpc},
   {ppc64, powerpc},
   {x86_64, i686},
+#ifdef CPU_TYPE_ARM
   {arm, arm},
   {armv4t, arm},
   {armv5, arm},
   {xscale, arm},
   {armv6, arm},
   {armv7, arm},
+#endif
   {NULL, NULL}
 };
 
@@ -772,6 +774,7 @@ add_arch_options (int index, const char 
 current_argv[arch_index] = -march=pentium2;
   else if (!strcmp (arches[index], x86_64))
 current_argv[arch_index] = -m64;
+#ifdef CPU_TYPE_ARM
   else if (!strcmp (arches[index], arm))
 current_argv[arch_index] = -march=armv4t;
   else if (!strcmp (arches[index], armv4t))
@@ -784,6 +787,7 @@ add_arch_options (int index, const char 
 current_argv[arch_index] = -march=armv6k;
   else if (!strcmp (arches[index], armv7))
 current_argv[arch_index] = -march=armv7a;
+#endif
   else
 count = 0;
 
--- /dev/null   2013-07-06 17:06:23.0 -0400
+++ build_gcc.fink  2013-07-06 17:13:36.0 -0400
@@ -0,0 +1,902 @@
+#!/bin/sh 
+# APPLE LOCAL file BI
+
+set +x
+
+# -arch arguments are different than configure arguments. We need to
+# translate them.
+
+TRANSLATE_ARCH=sed -e s/ppc/powerpc/ -e s/i386/i686/ -e s/armv6/arm/
+OMIT_X86_64=sed -e s/x86_64//
+
+# Build GCC the Apple way.
+# Parameters:
+
+# The first parameter is a space-separated list of the architectures
+# the compilers will run on.  For instance, ppc i386.  If the
+# current machine isn't in the list, it will (effectively) be added.
+HOSTS=`echo $1 | $TRANSLATE_ARCH `
+
+# The second parameter is a space-separated list of the architectures the
+# compilers will generate code for.  If the current machine isn't in
+# the list, a compiler for it will get built anyway, but won't be
+# installed.
+TARGETS=`echo $2 | $TRANSLATE_ARCH | $OMIT_X86_64 | sed -e s,\\',,g`
+
+# The GNU makefile target ('bootstrap' by default).
+BOOTSTRAP=${BOOTSTRAP-bootstrap}
+if [ $BOOTSTRAP != bootstrap ]; then
+bootstrap=--disable-bootstrap
+fi
+
+# Language front-ends to build. This also affects
+# whether the C++ driver and driver-driver are installed
+LANGUAGES=${LANGUAGES-c,objc,c++,obj-c++}
+
+# The BI build script (~rc/bin/buildit) accepts an '-othercflags'
+# command-line flag, and captures the argument to that flag in
+# $RC_NONARCH_CFLAGS (and mysteriously prepends '-pipe' thereto).
+# We will allow this to override the default $CFLAGS and $CXXFLAGS.
+
+# LLVM LOCAL begin
+if [ x$LLVM_DEBUG == x ]; then
+CFLAGS=-g -O2 ${RC_NONARCH_CFLAGS/-pipe/}
+else
+CFLAGS=-g
+fi
+# LLVM LOCAL end
+
+# This isn't a parameter; it is the architecture of the current machine.
+BUILD=`echo x86_64 | $TRANSLATE_ARCH`
+
+# The third parameter is the path to the compiler sources.  There should
+# be a shell script named 'configure' in this directory.  This script
+# makes a copy...
+ORIG_SRC_DIR=$3
+
+# The fourth parameter 

[cvs] dists/10.7/stable/main/finkinfo/languages llvm-gcc42.info, NONE, 1.1

2013-07-07 Thread Jack Howarth
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/languages
In directory sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv17391

Added Files:
llvm-gcc42.info 
Log Message:
add llvm-gcc42 package for xcode = 4.7

--- NEW FILE: llvm-gcc42.info ---
Package: llvm-gcc42
Version: 2336.11
Revision: 1
Source: http://opensource.apple.com/tarballs/llvmgcc42/llvmgcc42-%v.tar.gz
Source-MD5: 046629f7b3ce59bcb32b5116d29c27cd
PatchFile: %n.patch
PatchFile-MD5: 2c85470876bc22c361297ea5b7117847 
BuildDepends: fink (= 0.28), xcode (= 4.7)
Depends: %N-shlibs (= %v-%r),xcode (= 4.7)
SourceDirectory: llvmgcc42-%v
NoSetCPPFLAGS: true
NoSetLDFLAGS: true
BuildDependsOnly: false
UseMaxBuildJobs: true
InfoDocs: cpp.info cppinternals.info gcc.info gccinstall.info gccint.info 
libgomp.info
PatchScript: 
  #!/bin/bash -ev
  sed -e s|@@SDKROOT@@|`xcrun --show-sdk-path`|g  %{PatchFile} | patch -p0
  mv build_gcc.fink build_gcc
  chmod u+x build_gcc
  perl -pi -e s|DEVELOPER_DIR|MP_DEVELOPER_DIR|g %b/GNUmakefile 
%b/llvmCore/utils/buildit/build_llvm
  perl -pi -e s|--enable-werror | | %b/build_gcc

CompileScript: 

InstallScript: 
  #!/bin/bash -ev
  export LIBRARY_PATH=/usr/lib
  export CPATH=/usr/include
  export PATH=/bin:/usr/bin:/sbin:/usr/sbin
  export LANGUAGES=c,c++,objc,obj-c++
  export AR_FOR_TARGET=/usr/bin/ar
  export AS_FOR_TARGET=/usr/bin/as
  export LD_FOR_TARGET=/usr/bin/ld
  export NM_FOR_TARGET=/usr/bin/nm
  export RANLIB_FOR_TARGET=/usr/bin/ranlib
  export STRIP_FOR_TARGET=/usr/bin/strip
  export DSYMUTIL_FOR_HOST=/usr/bin/dsymutil
  export RANLIB_FOR_HOST=/usr/bin/ranlib
  export STRIP_FOR_HOST=/usr/bin/strip
  export OTOOL=/usr/bin/otool
  export OTOOL64=/usr/bin/otool
  make install CC=clang -pipe -std=gnu89\
   CXX=clang++ -pipe -stdlib=libstdc++  \
   PREFIX=%p  \
   SRCROOT=%b \
   OBJROOT=%b/../objroot  \
   SYMROOT=%b/../symroot  \
   DSTROOT=%d \
   RC_NONARCH_CFLAGS=-pipe -std=gnu89   \
   RC_OS=macos  \
   RC_ARCHS=x86_64  \
   RC_ProjectSourceVersion=2336 \
   RC_ProjectSourceSubversion=11\
   TARGETS=x86_64   \
   MP_DEVELOPER_DIR=Developer

  # move directory structure with tar
  cd %b/../objroot/dst-x86_64-x86_64
  tar -cpf - sw | (cd %d ; tar xpf -)

  # remove overlapping manpages with gcc48
  rm -fr %i/share/man/man7

  # remove llvm-gcc-4.2 as gcc
  rm %i/bin/gcc

  # add symlinks for as, ld and libstdc++.dylib
  ln -sf /usr/bin/as %i/lib/llvm-gcc42/gcc/x86_64-apple-darwin13/4.2.1/as
  ln -sf /usr/bin/ld %i/lib/llvm-gcc42/gcc/x86_64-apple-darwin13/4.2.1/ld
  ln -sf /usr/lib/libstdc++.6.dylib 
%i/lib/llvm-gcc42/gcc/x86_64-apple-darwin13/4.2.1/libstdc++.6.dylib

SplitOff: 
Package: %N-shlibs
Description: Shared libraries for llvm-gcc42
Files: 
  lib/llvm-gcc42/libgomp.1*.dylib
  lib/llvm-gcc42/i386/libgomp.1*.dylib

Shlibs: 
  %p/lib/llvm-gcc42/libgomp.1.dylib 2.0.0 %n (= 2336.11-1)
  %p/lib/llvm-gcc42/i386/libgomp.1.dylib 2.0.0 %n (= 2336.11-1)
  !%p/lib/llvm-gcc42/gcc/x86_64-apple-darwin13/4.2.1/libllvmgcc.dylib
  

License: GPL2
Description: Apple gcc compiler frontend for llvm
DescDetail: 
llvm-gcc42 integrates the LLVM optimizers and code 
generator with the GCC 4.2 parser. This allows LLVM to
compile languages supported by the GCC compiler
frontends, and provides high-fidelity drop-in 
compatibility with version 4.2 of GCC.

DescPackaging: 
Removal of SDK from / breaks sysroot for cross-compiler build so only build 
native, x86_64, for now.

Homepage: http://opensource.apple.com/
Maintainer: Jack Howarth howa...@bromo.med.uc.edu


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.7/stable/main/finkinfo/sci qgis18-py.info,1.3,1.4

2013-07-07 Thread BABA Yoshihiko
Update of /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20990/10.7/stable/main/finkinfo/sci

Modified Files:
qgis18-py.info 
Log Message:
Fixed wrong geos version

Index: qgis18-py.info
===
RCS file: /cvsroot/fink/dists/10.7/stable/main/finkinfo/sci/qgis18-py.info,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- qgis18-py.info  14 Jan 2013 03:51:46 -  1.3
+++ qgis18-py.info  8 Jul 2013 01:50:59 -   1.4
@@ -5,7 +5,7 @@
 Architecture: powerpc, i386, x86_64
 
 Version: 1.8.0
-Revision: 4
+Revision: 5
 Description: User friendly Open Source GIS
 License: GPL
 Homepage: http://qgis.org
@@ -92,7 +92,7 @@
-D 
EXECUTABLE_OUTPUT_PATH=%b/build/src/mac/Contents/MacOS
-D CMAKE_INSTALL_PREFIX=%b/Applications
-D GDAL_INCLUDE_DIR=%p/include/gdal1
-   -D 
GEOS_CONFIG=%p/opt/libgeos3.3.1/bin/geos-config
+   -D 
GEOS_CONFIG=%p/opt/libgeos3.3.6/bin/geos-config
-D QT_BINARY_DIR=%p/lib/qt4-mac/bin
-D QT_INCLUDE_DIR=%p/lib/qt4-mac/include
-D 
QT_QMAKE_EXECUTABLE=%p/lib/qt4-mac/bin/qmake


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs


[cvs] dists/10.4/stable/main/finkinfo/sci qgis18-py.info,1.2,1.3

2013-07-07 Thread BABA Yoshihiko
Update of /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci
In directory 
sfp-cvs-1.v30.ch3.sourceforge.com:/tmp/cvs-serv20990/10.4/stable/main/finkinfo/sci

Modified Files:
qgis18-py.info 
Log Message:
Fixed wrong geos version

Index: qgis18-py.info
===
RCS file: /cvsroot/fink/dists/10.4/stable/main/finkinfo/sci/qgis18-py.info,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- qgis18-py.info  14 Jan 2013 03:51:46 -  1.2
+++ qgis18-py.info  8 Jul 2013 01:50:59 -   1.3
@@ -5,7 +5,7 @@
 Architecture: powerpc, i386, x86_64
 
 Version: 1.8.0
-Revision: 4
+Revision: 5
 Description: User friendly Open Source GIS
 License: GPL
 Homepage: http://qgis.org
@@ -92,7 +92,7 @@
-D 
EXECUTABLE_OUTPUT_PATH=%b/build/src/mac/Contents/MacOS
-D CMAKE_INSTALL_PREFIX=%b/Applications
-D GDAL_INCLUDE_DIR=%p/include/gdal1
-   -D 
GEOS_CONFIG=%p/opt/libgeos3.3.1/bin/geos-config
+   -D 
GEOS_CONFIG=%p/opt/libgeos3.3.6/bin/geos-config
-D QT_BINARY_DIR=%p/lib/qt4-mac/bin
-D QT_INCLUDE_DIR=%p/lib/qt4-mac/include
-D 
QT_QMAKE_EXECUTABLE=%p/lib/qt4-mac/bin/qmake


--
This SF.net email is sponsored by Windows:

Build for Windows Store.

http://p.sf.net/sfu/windows-dev2dev
___
Fink-commits mailing list
Fink-commits@lists.sourceforge.net
http://news.gmane.org/gmane.os.apple.fink.cvs