Update of /cvsroot/fink/dists/10.2-gcc3.3/unstable/main/finkinfo/base
In directory sc8-pr-cvs1:/tmp/cvs-serv5202
Added Files:
bzip2.info bzip2.patch debianutils.info debianutils.patch
gettext.info gettext.patch libiconv-1.7-17.info
libiconv-1.7-17.patch libiconv.info
Removed Files:
bzip2-1.0.2-2.info bzip2-1.0.2-2.patch debianutils-1.23-1.info
debianutils-1.23-1.patch gettext-0.10.40-5.info
gettext-0.10.40-5.patch libiconv-1.7-7.info
libiconv-1.7-7.patch libiconv-1.9.1-1.info
Log Message:
bump revision (due to fink-prebinding)
--- NEW FILE: bzip2.info ---
Package: bzip2
Version: 1.0.2
Revision: 12
Essential: yes
Depends: %N-shlibs (= %v-%r)
BuildDepends: fink (>= 0.13.0), fink-prebinding
Maintainer: Max Horn <[EMAIL PROTECTED]>
Source: mirror:sourceforge:fink/%n-%v.tar.gz
Source-MD5: ee76864958d568677f03db8afad92beb
Patch: %n.patch
CompileScript: make PREFIX=%p
InstallScript: make install PREFIX=%i
DocFiles: LICENSE README CHANGES manual*.html
SplitOff: <<
Package: %N-shlibs
Replaces: %N (<= 1.0.2-1)
Depends: base-files
Essential: true
Files: lib/libbz2.*.dylib
Shlibs: %p/lib/libbz2.1.dylib 1.0.1 %n (>= 1.0.2-2)
Description: Shared libraries for bzip2 package
DocFiles: LICENSE README CHANGES manual*.html
<<
SplitOff2: <<
Package: %N-dev
Depends: %N-shlibs (= %v-%r)
Replaces: %N (<= 1.0.2-1)
BuildDependsOnly: true
Files: include lib/libbz2.dylib
Description: Developer files for bzip2 package
DocFiles: LICENSE README CHANGES manual*.html
<<
Description: Block-sorting file compressor
DescDetail: <<
bzip2 is a portable, lossless data compressor based on the
Burrows-Wheeler transform. It achieves good compression and runs on
practically every (32/64-bit) platform in the known universe.
<<
DescPort: <<
Doesn't use autoconf, but comes with a useful Makefile. Anyway, the
patch modifies it to build a shared library instead of a static one.
<<
License: OSI-Approved
Homepage: http://sources.redhat.com/bzip2/
--- NEW FILE: bzip2.patch ---
diff -ru bzip2-1.0.2/Makefile bzip2-1.0.2-patched/Makefile
--- bzip2-1.0.2/Makefile Sat Jan 26 00:34:53 2002
+++ bzip2-1.0.2-patched/Makefile Sun Mar 31 00:15:27 2002
@@ -1,15 +1,18 @@
+# This Makefile builds a shared version of the library,
+# libbz2.1.0.2.dylib, with install_name .../libbz2.1.dylib,
+# on Darwin and Mac OS X.
SHELL=/bin/sh
# To assist in cross-compiling
-CC=gcc
+CC=cc
AR=ar
RANLIB=ranlib
LDFLAGS=
# Suitably paranoid flags to avoid bugs in gcc-2.7
BIGFILES=-D_FILE_OFFSET_BITS=64
-CFLAGS=-Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce $(BIGFILES)
+CFLAGS=-fno-common -Wall -Winline -O2 -fomit-frame-pointer -fno-strength-reduce
$(BIGFILES)
# Where you want it installed when you do 'make install'
PREFIX=/usr
@@ -23,32 +26,29 @@
decompress.o \
bzlib.o
-all: libbz2.a bzip2 bzip2recover test
+all: libbz2.dylib bzip2 bzip2recover test
-bzip2: libbz2.a bzip2.o
+bzip2: libbz2.dylib bzip2.o
$(CC) $(CFLAGS) $(LDFLAGS) -o bzip2 bzip2.o -L. -lbz2
bzip2recover: bzip2recover.o
$(CC) $(CFLAGS) $(LDFLAGS) -o bzip2recover bzip2recover.o
-libbz2.a: $(OBJS)
- rm -f libbz2.a
- $(AR) cq libbz2.a $(OBJS)
- @if ( test -f $(RANLIB) -o -f /usr/bin/ranlib -o \
- -f /bin/ranlib -o -f /usr/ccs/bin/ranlib ) ; then \
- echo $(RANLIB) libbz2.a ; \
- $(RANLIB) libbz2.a ; \
- fi
+libbz2.dylib: $(OBJS)
+ rm -f libbz2.dylib libbz2.*.dylib
+ $(CC) -dynamiclib -o libbz2.1.0.2.dylib $(OBJS) -install_name
$(PREFIX)/lib/libbz2.1.dylib -compatibility_version 1.0.1 -current_version 1.0.2
+ ln -s libbz2.1.0.2.dylib libbz2.1.dylib
+ ln -s libbz2.1.0.2.dylib libbz2.dylib
check: test
test: bzip2
@cat words1
- ./bzip2 -1 < sample1.ref > sample1.rb2
- ./bzip2 -2 < sample2.ref > sample2.rb2
- ./bzip2 -3 < sample3.ref > sample3.rb2
- ./bzip2 -d < sample1.bz2 > sample1.tst
- ./bzip2 -d < sample2.bz2 > sample2.tst
- ./bzip2 -ds < sample3.bz2 > sample3.tst
+ DYLD_LIBRARY_PATH=. ./bzip2 -1 < sample1.ref > sample1.rb2
+ DYLD_LIBRARY_PATH=. ./bzip2 -2 < sample2.ref > sample2.rb2
+ DYLD_LIBRARY_PATH=. ./bzip2 -3 < sample3.ref > sample3.rb2
+ DYLD_LIBRARY_PATH=. ./bzip2 -d < sample1.bz2 > sample1.tst
+ DYLD_LIBRARY_PATH=. ./bzip2 -d < sample2.bz2 > sample2.tst
+ DYLD_LIBRARY_PATH=. ./bzip2 -ds < sample3.bz2 > sample3.tst
cmp sample1.bz2 sample1.rb2
cmp sample2.bz2 sample2.rb2
cmp sample3.bz2 sample3.rb2
@@ -60,8 +60,9 @@
install: bzip2 bzip2recover
if ( test ! -d $(PREFIX)/bin ) ; then mkdir -p $(PREFIX)/bin ; fi
if ( test ! -d $(PREFIX)/lib ) ; then mkdir -p $(PREFIX)/lib ; fi
- if ( test ! -d $(PREFIX)/man ) ; then mkdir -p $(PREFIX)/man ; fi
- if ( test ! -d $(PREFIX)/man/man1 ) ; then mkdir -p $(PREFIX)/man/man1 ; fi
+ if ( test ! -d $(PREFIX)/share ) ; then mkdir -p $(PREFIX)/share ; fi
+ if ( test ! -d $(PREFIX)/share/man ) ; then mkdir -p $(PREFIX)/share/man ; fi
+ if ( test ! -d $(PREFIX)/share/man/man1 ) ; then mkdir -p
$(PREFIX)/share/man/man1 ; fi
if ( test ! -d $(PREFIX)/include ) ; then mkdir -p $(PREFIX)/include ; fi
cp -f bzip2 $(PREFIX)/bin/bzip2
cp -f bzip2 $(PREFIX)/bin/bunzip2
@@ -71,12 +72,14 @@
chmod a+x $(PREFIX)/bin/bunzip2
chmod a+x $(PREFIX)/bin/bzcat
chmod a+x $(PREFIX)/bin/bzip2recover
- cp -f bzip2.1 $(PREFIX)/man/man1
- chmod a+r $(PREFIX)/man/man1/bzip2.1
+ cp -f bzip2.1 $(PREFIX)/share/man/man1
+ chmod a+r $(PREFIX)/share/man/man1/bzip2.1
cp -f bzlib.h $(PREFIX)/include
chmod a+r $(PREFIX)/include/bzlib.h
- cp -f libbz2.a $(PREFIX)/lib
- chmod a+r $(PREFIX)/lib/libbz2.a
+ cp -f libbz2.1.0.2.dylib $(PREFIX)/lib
+ chmod a+rx $(PREFIX)/lib/libbz2.1.0.2.dylib
+ (cd $(PREFIX)/lib && rm -f libbz2.1.dylib && ln -s libbz2.1.0.2.dylib
libbz2.1.dylib)
+ (cd $(PREFIX)/lib && rm -f libbz2.dylib && ln -s libbz2.1.0.2.dylib
libbz2.dylib)
cp -f bzgrep $(PREFIX)/bin/bzgrep
ln $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzegrep
ln $(PREFIX)/bin/bzgrep $(PREFIX)/bin/bzfgrep
@@ -87,18 +90,18 @@
cp -f bzdiff $(PREFIX)/bin/bzdiff
ln $(PREFIX)/bin/bzdiff $(PREFIX)/bin/bzcmp
chmod a+x $(PREFIX)/bin/bzdiff
- cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/man/man1
- chmod a+r $(PREFIX)/man/man1/bzgrep.1
- chmod a+r $(PREFIX)/man/man1/bzmore.1
- chmod a+r $(PREFIX)/man/man1/bzdiff.1
- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzegrep.1
- echo ".so man1/bzgrep.1" > $(PREFIX)/man/man1/bzfgrep.1
- echo ".so man1/bzmore.1" > $(PREFIX)/man/man1/bzless.1
- echo ".so man1/bzdiff.1" > $(PREFIX)/man/man1/bzcmp.1
+ cp -f bzgrep.1 bzmore.1 bzdiff.1 $(PREFIX)/share/man/man1
+ chmod a+r $(PREFIX)/share/man/man1/bzgrep.1
+ chmod a+r $(PREFIX)/share/man/man1/bzmore.1
+ chmod a+r $(PREFIX)/share/man/man1/bzdiff.1
+ echo ".so man1/bzgrep.1" > $(PREFIX)/share/man/man1/bzegrep.1
+ echo ".so man1/bzgrep.1" > $(PREFIX)/share/man/man1/bzfgrep.1
+ echo ".so man1/bzmore.1" > $(PREFIX)/share/man/man1/bzless.1
+ echo ".so man1/bzdiff.1" > $(PREFIX)/share/man/man1/bzcmp.1
distclean: clean
clean:
- rm -f *.o libbz2.a bzip2 bzip2recover \
+ rm -f *.o libbz2.dylib bzip2 bzip2recover \
sample1.rb2 sample2.rb2 sample3.rb2 \
sample1.tst sample2.tst sample3.tst
--- NEW FILE: debianutils.info ---
Package: debianutils
Version: 1.23
Revision: 11
Essential: true
Maintainer: Christian Swinehart <[EMAIL PROTECTED]>
Depends: base-files
BuildDepends: fink-prebinding
Conflicts: mktemp
Replaces: mktemp, tetex
Provides: mktemp
Source: mirror:sourceforge:fink/%n_%v.tar.gz
Source-MD5: 232b5bc916a1e2af43fde890f840a304
SourceDirectory: %n-%v
Patch: %n.patch
InstallScript: <<
#!/bin/sh
INSTALL=install
INSTALL_FILE="$INSTALL -p -o root -g admin -m 644"
INSTALL_PROGRAM="$INSTALL -p -o root -g admin -m 755"
INSTALL_SCRIPT="$INSTALL -p -o root -g admin -m 755"
INSTALL_DIR="$INSTALL -p -d -o root -g admin -m 755"
$INSTALL_DIR %i/bin \
%i/sbin \
%i/share/man/man1 \
%i/share/man/man8 \
%i/share/man/fr/man8
$INSTALL_PROGRAM readlink run-parts tempfile mktemp %i/sbin
$INSTALL_SCRIPT which savelog sensible-editor sensible-pager %i/bin
$INSTALL_FILE run-parts.8 savelog.8 %i/share/man/man8
$INSTALL_FILE which.1 tempfile.1 sensible-editor.1 mktemp.1 readlink.1 \
%i/share/man/man1
$INSTALL_FILE savelog.fr.8 %i/share/man/fr/man8/savelog.8
ln -s sensible-editor.1 %i/share/man/man1/sensible-pager.1
<<
DocFiles: debian/copyright debian/changelog
Description: Misc. utilities specific to Debian (and Fink)
DescDetail: Includes the commands: mktemp, readlink, tempfile, and run-parts
DescPort: <<
Both run-parts and tempfile require the getopt() routines from glibc.
The versions included here come from glibc-2.2.4
Thanks to Justin Hallett for the 1.22.5 port.
<<
Homepage: http://packages.debian.org/unstable/base/debianutils.html
License: GPL
--- NEW FILE: debianutils.patch ---
diff -ruN debianutils-1.22.5.orig/Makefile.am debianutils-1.22.5/Makefile.am
--- debianutils-1.22.5.orig/Makefile.am 2002-11-18 13:36:54.000000000 -0700
+++ debianutils-1.22.5/Makefile.am 2002-11-19 09:35:57.000000000 -0700
@@ -3,5 +3,5 @@
bin_PROGRAMS = mktemp readlink run-parts tempfile
mktemp_SOURCES = mktemp.c
readlink_SOURCES = readlink.c
-run_parts_SOURCES = run-parts.c
-tempfile_SOURCES = tempfile.c
+run_parts_SOURCES = run-parts.c getopt.c getopt1.c
+tempfile_SOURCES = tempfile.c getopt.c getopt1.c
diff -ruN debianutils-1.22.5.orig/Makefile.in debianutils-1.22.5/Makefile.in
--- debianutils-1.22.5.orig/Makefile.in 2002-11-18 14:06:08.000000000 -0700
+++ debianutils-1.22.5/Makefile.in 2002-11-19 09:36:00.000000000 -0700
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.7.1 from Makefile.am.
+# Makefile.in generated by automake 1.6.3 from Makefile.am.
# @configure_input@
[...1794 lines suppressed...]
+ break;
+
+ default:
+ printf ("?? getopt returned character code 0%o ??\n", c);
+ }
+ }
+
+ if (optind < argc)
+ {
+ printf ("non-option ARGV-elements: ");
+ while (optind < argc)
+ printf ("%s ", argv[optind++]);
+ printf ("\n");
+ }
+
+ exit (0);
+}
+
+#endif /* TEST */
Binary files debianutils-1.22.5.orig/getopt1.o and debianutils-1.22.5/getopt1.o differ
--- NEW FILE: gettext.info ---
Package: gettext
Version: 0.10.40
Revision: 17
Source: mirror:gnu:gettext/gettext-%v.tar.gz
Source-MD5: 6a17767b47ffb45b4866cec9fb0a39b0
Essential: yes
Depends: libiconv, libiconv-bin, base-files
BuildDepends: libiconv-dev, fink (>= 0.13.6), fink-prebinding
Shlibs: %p/lib/libintl.1.dylib 2.0.0 %n (>= 0.10.40-5)
DescPackaging: <<
Shared libraries are in gettext for backward compatibility, to avoid
breaking dpkg during an update.
Previous versions by Christoph Pfisterer.
<<
Patch: %n.patch
SetCPPFLAGS: -no-cpp-precomp
ConfigureParams: --infodir=%p/share/info --mandir=%p/share/man --with-included-gettext
SetLDFLAGS: -L%b/intl/.libs
InstallScript: <<
make install DESTDIR=%d docdir=%p/share/doc/%n
sed 's;-L%b/intl/.libs;;' <%i/lib/libintl.la >%i/lib/libintl.la.tmp
mv -f %i/lib/libintl.la.tmp %i/lib/libintl.la
rm -f %i/lib/charset.alias
<<
DocFiles: README* AUTHORS BUGS COPYING* NEWS THANKS TODO
SplitOff: <<
Package: gettext-bin
Depends: %N (= %v-%r)
Replaces: %N (<= 0.10.40-4)
Files: bin share/aclocal share/doc/gettext/*.html share/emacs share/gettext
share/info share/locale share/man
Description: Executables for gettext package
InfoDocs: gettext.info
DocFiles: README* AUTHORS BUGS COPYING* NEWS THANKS TODO
<<
SplitOff2: <<
Package: gettext-dev
Depends: gettext (= %v-%r)
Replaces: gettext (<= 0.10.40-4)
BuildDependsOnly: true
Files: include lib/libintl.dylib lib/*.a lib/*.la
Description: Developer files for gettext package
DocFiles: README* AUTHORS BUGS COPYING* NEWS THANKS TODO
<<
#
PostInstScript: <<
if [ -L %p/etc/alternatives/charset.alias ]; then
update-alternatives --remove charset.alias %p/lib/charset.alias.gettext
fi
<<
#
Description: Message localization support
DescDetail: <<
The gettext package provides some of the i18n and l10n support used by
many GNU programs but missing from the Darwin C library.
<<
DescPort: <<
Uses libtool 1.4; needs a minimal patch for Mac OS X 10.1.
Needs help to link against the right copy of the library. Afterwards,
we remove the used flag from the .la file as it refers to the
temporary build directory.
charset.alias is deleted because it is empty on Darwin anyway and
causes unnecessary conflicts between packages.
<<
License: GPL/LGPL
Maintainer: Max Horn <[EMAIL PROTECTED]>
Homepage: http://www.gnu.org/software/gettext/
--- NEW FILE: gettext.patch ---
diff -ru gettext-0.10.40/configure gettext-0.10.40-patched/configure
--- gettext-0.10.40/configure 2001-09-14 20:47:29.000000000 -0400
+++ gettext-0.10.40-patched/configure 2002-06-13 11:52:03.000000000 -0400
@@ -3782,11 +3782,11 @@
;;
darwin* | rhapsody*)
- allow_undefined_flag='-undefined suppress'
+ allow_undefined_flag=''
# FIXME: Relying on posixy $() will cause problems for
# cross-compilation, but unfortunately the echo tests do not
# yet detect zsh echo's removal of \ escapes.
- archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib)
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+ archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib)
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname
$tmp_verstring'
# We need to add '_' to the symbols in $export_symbols first
#archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
hardcode_direct=yes
diff -ru gettext-0.10.40/ltmain.sh gettext-0.10.40-patched/ltmain.sh
--- gettext-0.10.40/ltmain.sh 2001-04-24 19:35:10.000000000 -0400
+++ gettext-0.10.40-patched/ltmain.sh 2002-06-13 11:52:54.000000000 -0400
@@ -2858,6 +2858,11 @@
if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
eval cmds=\"$archive_expsym_cmds\"
else
+ if test "x$verstring" = "x0.0"; then
+ tmp_verstring=
+ else
+ tmp_verstring="$verstring"
+ fi
eval cmds=\"$archive_cmds\"
fi
IFS="${IFS= }"; save_ifs="$IFS"; IFS='~'
--- NEW FILE: libiconv-1.7-17.info ---
Package: libiconv
Version: 1.7
Revision: 17
Source: mirror:sourceforge:fink/%n-%v.tar.gz
Source-MD5: bc7029c0bc913dc297cf49afa4c0e133
Essential: yes
Depends: base-files
BuildDepends: fink (>= 0.13.0), fink-prebinding
Shlibs: <<
%p/lib/libcharset.1.dylib 2.0.0 %n (>= 1.7-7)
%p/lib/libiconv.2.dylib 3.0.0 %n (>= 1.7-7)
<<
DescPackaging: <<
Shared libraries are in libiconv for backward compatibility, to avoid
breaking dpkg during an update.
Previous versions by Christoph Pfisterer.
<<
Patch: %f.patch
ConfigureParams: --mandir=%p/share/man
InstallScript: <<
mkdir -p %i/share/man %i/share/doc/%n
make install prefix=%i mandir=%i/share/man docdir=%i/share/doc/%n
rm -rf %i/doc
rm -f %i/lib/charset.alias
<<
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
#
PostInstScript: <<
if [ -L %p/etc/alternatives/charset.alias ]; then
update-alternatives --remove charset.alias %p/lib/charset.alias.libiconv
fi
<<
#
SplitOff: <<
Package: libiconv-bin
Essential: true
Depends: libiconv (= %v-%r)
Replaces: libiconv (<= 1.7-6)
Files: bin share/doc/libiconv/*.html share/man
Description: Executables for libiconv package
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
<<
SplitOff2: <<
Package: libiconv-dev
Depends: libiconv (= %v-%r)
Replaces: libiconv (<= 1.7-6)
BuildDependsOnly: true
Files: include lib/libcharset.dylib lib/libiconv.dylib lib/*.a lib/*.la
Description: Developer files for libiconv package
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
<<
Description: Character set conversion library
DescDetail: <<
GNU libiconv provides an iconv() implemententation for systems that lack
it, or whose implementation cannot convert from/to Unicode.
<<
DescPort: <<
charset.alias is deleted because it is empty on Darwin anyway and
causes unnecessary conflicts between packages.
<<
License: LGPL
Maintainer: Max Horn <[EMAIL PROTECTED]>
Homepage: http://www.gnu.org/software/libiconv/
--- NEW FILE: libiconv-1.7-17.patch ---
diff -Naur libiconv-1.7.old/autoconf/ltmain.sh libiconv-1.7.new/autoconf/ltmain.sh
--- libiconv-1.7.old/autoconf/ltmain.sh Wed Apr 25 08:35:10 2001
+++ libiconv-1.7.new/autoconf/ltmain.sh Fri Jun 14 02:28:31 2002
@@ -2858,6 +2858,11 @@
if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
eval cmds=\"$archive_expsym_cmds\"
else
+ if test "x$verstring" = "x0.0"; then
+ tmp_verstring=
+ else
+ tmp_verstring="$verstring"
+ fi
eval cmds=\"$archive_cmds\"
fi
IFS="${IFS= }"; save_ifs="$IFS"; IFS='~'
diff -Naur libiconv-1.7.old/configure libiconv-1.7.new/configure
--- libiconv-1.7.old/configure Mon Jun 25 21:39:40 2001
+++ libiconv-1.7.new/configure Fri Jun 14 02:28:31 2002
@@ -3460,7 +3460,7 @@
# FIXME: Relying on posixy $() will cause problems for
# cross-compilation, but unfortunately the echo tests do not
# yet detect zsh echo's removal of \ escapes.
- archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib)
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+ archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) -o
$lib $libobjs $deplibs$linkopts -install_name $rpath/$soname $tmp_verstring'
# We need to add '_' to the symbols in $export_symbols first
#archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
hardcode_direct=yes
diff -Naur libiconv-1.7.old/libcharset/autoconf/ltmain.sh
libiconv-1.7.new/libcharset/autoconf/ltmain.sh
--- libiconv-1.7.old/libcharset/autoconf/ltmain.sh Wed Apr 25 08:35:10 2001
+++ libiconv-1.7.new/libcharset/autoconf/ltmain.sh Fri Jun 14 02:35:52 2002
@@ -2858,6 +2858,11 @@
if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then
eval cmds=\"$archive_expsym_cmds\"
else
+ if test "x$verstring" = "x0.0"; then
+ tmp_verstring=
+ else
+ tmp_verstring="$verstring"
+ fi
eval cmds=\"$archive_cmds\"
fi
IFS="${IFS= }"; save_ifs="$IFS"; IFS='~'
diff -Naur libiconv-1.7.old/libcharset/configure libiconv-1.7.new/libcharset/configure
--- libiconv-1.7.old/libcharset/configure Mon Jun 25 21:39:57 2001
+++ libiconv-1.7.new/libcharset/configure Fri Jun 14 02:29:24 2002
@@ -3310,7 +3310,7 @@
# FIXME: Relying on posixy $() will cause problems for
# cross-compilation, but unfortunately the echo tests do not
# yet detect zsh echo's removal of \ escapes.
- archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib)
$allow_undefined_flag -o $lib $libobjs $deplibs$linkopts -install_name $rpath/$soname
$(test -n "$verstring" -a x$verstring != x0.0 && echo $verstring)'
+ archive_cmds='$CC $(test .$module = .yes && echo -bundle || echo -dynamiclib) -o
$lib $libobjs $deplibs$linkopts -install_name $rpath/$soname $tmp_verstring'
# We need to add '_' to the symbols in $export_symbols first
#archive_expsym_cmds="$archive_cmds"' && strip -s $export_symbols'
hardcode_direct=yes
--- NEW FILE: libiconv.info ---
Package: libiconv
Version: 1.9.1
Revision: 11
Source: mirror:sourceforge:fink/%n-%v.tar.gz
Source-MD5: 0c99a05e0c3c153bac1c960f78711155
Essential: yes
Depends: base-files
BuildDepends: fink (>= 0.13.0), fink-prebinding
Shlibs: <<
%p/lib/libcharset.1.dylib 2.0.0 %n (>= 1.7-7)
%p/lib/libiconv.2.dylib 5.0.0 %n (>= 1.9.1-1)
<<
DescPackaging: <<
Shared libraries are in libiconv for backward compatibility, to avoid
breaking dpkg during an update.
Previous versions by Christoph Pfisterer.
<<
NoSetLDFLAGS: true
SetLIBS: -L%p/lib
ConfigureParams: --mandir=%p/share/man
InstallScript: <<
mkdir -p %i/share/man %i/share/doc/%n
make install prefix=%i mandir=%i/share/man docdir=%i/share/doc/%n
rm -rf %i/doc
rm -f %i/lib/charset.alias
<<
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
#
PostInstScript: <<
if [ -L %p/etc/alternatives/charset.alias ]; then
update-alternatives --remove charset.alias %p/lib/charset.alias.libiconv
fi
<<
#
SplitOff: <<
Package: libiconv-bin
Essential: true
Depends: libiconv (= %v-%r)
Replaces: libiconv (<= 1.7-6)
Files: bin share/doc/libiconv/*.html share/man
Description: Executables for libiconv package
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
<<
SplitOff2: <<
Package: libiconv-dev
Depends: libiconv (= %v-%r)
Replaces: libiconv (<= 1.7-6)
BuildDependsOnly: true
Files: include lib/libcharset.dylib lib/libiconv.dylib lib/*.a lib/*.la
Description: Developer files for libiconv package
DocFiles: README* AUTHORS COPYING.LIB DESIGN NEWS NOTES THANKS
<<
Description: Character set conversion library
DescDetail: <<
GNU libiconv provides an iconv() implemententation for systems that lack
it, or whose implementation cannot convert from/to Unicode.
<<
DescPort: <<
charset.alias is deleted because it is empty on Darwin anyway and
causes unnecessary conflicts between packages.
<<
License: LGPL
Maintainer: Max Horn <[EMAIL PROTECTED]>
Homepage: http://www.gnu.org/software/libiconv/
--- bzip2-1.0.2-2.info DELETED ---
--- bzip2-1.0.2-2.patch DELETED ---
--- debianutils-1.23-1.info DELETED ---
--- debianutils-1.23-1.patch DELETED ---
--- gettext-0.10.40-5.info DELETED ---
--- gettext-0.10.40-5.patch DELETED ---
--- libiconv-1.7-7.info DELETED ---
--- libiconv-1.7-7.patch DELETED ---
--- libiconv-1.9.1-1.info DELETED ---
-------------------------------------------------------
This SF.net email is sponsored by: SF.net Giveback Program.
SourceForge.net hosts over 70,000 Open Source Projects.
See the people who have HELPED US provide better services:
Click here: http://sourceforge.net/supporters.php
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits