Update of /cvsroot/fink/fink/10.2
In directory sc8-pr-cvs1:/tmp/cvs-serv26699
Modified Files:
ChangeLog
Added Files:
ncurses-5.3-1.info ncurses-5.3-1.patch
Removed Files:
ncurses-5.2-9.info ncurses-5.2-9.patch
Log Message:
updated to latest ncurses
--- NEW FILE: ncurses-5.3-1.info ---
Package: ncurses
Version: 5.3
Revision: 1
GCC: 3.1
Source: mirror:sourceforge:fink/%n-%v.tar.gz
Source-MD5: 5dcc9faa93157eafa572494bffed131a
PatchScript: perl -p -i -e 's|tic\$suffix|tic\$suffix -x|;' misc/run_tic*
Patch: %f.patch
Essential: yes
Depends: base-files
ConfigureParams: --with-libtool --without-ada --with-shared --without-debug
--enable-termcap --mandir=%p/share/man
--with-terminfo-dirs="%p/share/terminfo:/usr/share/terminfo"
--with-default-terminfo-dir="%p/share/terminfo"
NoSetCFLAGS: true
NoSetLDFLAGS: true
SetCFLAGS: -Wno-deprecated -isystem %p/include/ncurses
NoSetCPPFLAGS: true
SetCPPFLAGS: -no-cpp-precomp
CompileScript: <<
LIBTOOL=/usr/bin/glibtool ./configure %c
make
<<
InstallScript: <<
make install DESTDIR=%d DYLD_LIBRARY_PATH=`pwd`/lib
mkdir -p %i/share/doc/%n
cp tack/README %i/share/doc/%n/README.tack
cp tack/COPYING %i/share/doc/%n/COPYING.tack
ln -s %p/lib/libform.5.dylib %i/lib/libform.dylib.5
ln -s %p/lib/libmenu.5.dylib %i/lib/libmenu.dylib.5
ln -s %p/lib/libncurses.5.dylib %i/lib/libncurses.dylib.5
ln -s %p/lib/libpanel.5.dylib %i/lib/libpanel.dylib.5
<<
DocFiles: README ANNOUNCE NEWS INSTALL TO-DO MANIFEST
Description: Full-screen ascii drawing library
DescPort: <<
The -no-cpp-precomp is strictly needed.
More changes by Chris Zubrzycki to be more compatable with apple's lib
Stupid bug in configure enables broken support, which breaks ncurses. I removed it.
<<
DescPackaging: <<
First revision by David Ross.
Previous versions by Christoph Pfisterer.
<<
License: OSI-Approved
Maintainer: Chris Zubrzycki <[EMAIL PROTECTED]>
Homepage: http://www.gnu.org/software/ncurses/ncurses.html
--- NEW FILE: ncurses-5.3-1.patch ---
diff -ruN ncurses-5.3/configure ncurses-5.3.new/configure
--- ncurses-5.3/configure 2002-09-21 20:49:14.000000000 -0400
+++ ncurses-5.3.new/configure 2003-01-28 20:26:45.000000000 -0500
@@ -7531,101 +7531,6 @@
fi
-echo "$as_me:7534: checking if data-only library module links" >&5
-echo $ECHO_N "checking if data-only library module links... $ECHO_C" >&6
-if test "${cf_cv_link_dataonly+set}" = set; then
- echo $ECHO_N "(cached) $ECHO_C" >&6
-else
-
- rm -f conftest.a
- cat >conftest.$ac_ext <<EOF
-#line 7542 "configure"
-int testdata[3] = { 123, 456, 789 };
-EOF
- if { (eval echo "$as_me:7545: \"$ac_compile\"") >&5
- (eval $ac_compile) 2>&5
- ac_status=$?
- echo "$as_me:7548: \$? = $ac_status" >&5
- (exit $ac_status); } ; then
- mv conftest.o data.o && \
- ( $AR $AR_OPTS conftest.a data.o ) 2>&5 1>/dev/null
- fi
- rm -f conftest.$ac_ext data.o
- cat >conftest.$ac_ext <<EOF
-#line 7555 "configure"
-int testfunc()
-{
-#if defined(NeXT)
- exit(1); /* I'm told this linker is broken */
-#else
- extern int testdata[3];
- return testdata[0] == 123
- && testdata[1] == 456
- && testdata[2] == 789;
-#endif
-}
-EOF
- if { (eval echo "$as_me:7568: \"$ac_compile\"") >&5
- (eval $ac_compile) 2>&5
- ac_status=$?
- echo "$as_me:7571: \$? = $ac_status" >&5
- (exit $ac_status); }; then
- mv conftest.o func.o && \
- ( $AR $AR_OPTS conftest.a func.o ) 2>&5 1>/dev/null
- fi
- rm -f conftest.$ac_ext func.o
- ( eval $ac_cv_prog_RANLIB conftest.a ) 2>&5 >/dev/null
- cf_saveLIBS="$LIBS"
- LIBS="conftest.a $LIBS"
- if test "$cross_compiling" = yes; then
- cf_cv_link_dataonly=unknown
-else
- cat >conftest.$ac_ext <<_ACEOF
-#line 7584 "configure"
-#include "confdefs.h"
-
- int main()
- {
- extern int testfunc();
- exit (!testfunc());
- }
-
-_ACEOF
-rm -f conftest$ac_exeext
-if { (eval echo "$as_me:7595: \"$ac_link\"") >&5
- (eval $ac_link) 2>&5
- ac_status=$?
- echo "$as_me:7598: \$? = $ac_status" >&5
- (exit $ac_status); } && { ac_try='./conftest$ac_exeext'
- { (eval echo "$as_me:7600: \"$ac_try\"") >&5
- (eval $ac_try) 2>&5
- ac_status=$?
- echo "$as_me:7603: \$? = $ac_status" >&5
- (exit $ac_status); }; }; then
- cf_cv_link_dataonly=yes
-else
- echo "$as_me: program exited with status $ac_status" >&5
-echo "$as_me: failed program was:" >&5
-cat conftest.$ac_ext >&5
-cf_cv_link_dataonly=no
-fi
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
-fi
- LIBS="$cf_saveLIBS"
-
-fi
-
-echo "$as_me:7618: result: $cf_cv_link_dataonly" >&5
-echo "${ECHO_T}$cf_cv_link_dataonly" >&6
-
-if test "$cf_cv_link_dataonly" = no ; then
- cat >>confdefs.h <<\EOF
-#define BROKEN_LINKER 1
-EOF
-
- BROKEN_LINKER=1
-fi
-
### Checks for library functions.
for ac_func in \
Index: ChangeLog
===================================================================
RCS file: /cvsroot/fink/fink/10.2/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog 27 Feb 2003 12:59:26 -0000 1.6
+++ ChangeLog 1 Mar 2003 20:59:45 -0000 1.7
@@ -1,3 +1,7 @@
+2003-02-28 Max Horn <[EMAIL PROTECTED]>
+
+ * updated ncurses package to 5.3, matching (un)stable CVS
+
2003-02-27 Max Horn <[EMAIL PROTECTED]>
* Added MD5 values back (now that we use /sbin/md5 to calculate the MD5
--- ncurses-5.2-9.info DELETED ---
--- ncurses-5.2-9.patch DELETED ---
-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Fink-commits mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/fink-commits