diff options
author | petef <petef@FreeBSD.org> | 2001-11-25 00:12:30 +0000 |
---|---|---|
committer | petef <petef@FreeBSD.org> | 2001-11-25 00:12:30 +0000 |
commit | 91afc98dbc55d182688cec0ae37d75f2b773f22f (patch) | |
tree | b78ee24e6a47a2365b9d4e68b831ac4da2938c23 /net-im/gale/files | |
parent | 7825a00ac44e8dc52e982b98d1b237185dfa2f5a (diff) | |
download | FreeBSD-ports-91afc98dbc55d182688cec0ae37d75f2b773f22f.zip FreeBSD-ports-91afc98dbc55d182688cec0ae37d75f2b773f22f.tar.gz |
- update to 0.99e
- update MASTER_SITES
- fix auto{conf,make} breakage
- add INSTALLS_SHLIB
- silence the cat'ing of pkg-message
- add @exec mkdir's to pkg-plist for packages
PR: 31810
Submitted by: maintainer (mostly)
Diffstat (limited to 'net-im/gale/files')
-rw-r--r-- | net-im/gale/files/patch-acinclude.m4 | 114 | ||||
-rw-r--r-- | net-im/gale/files/patch-configure | 13 | ||||
-rw-r--r-- | net-im/gale/files/patch-crypto | 12 | ||||
-rw-r--r-- | net-im/gale/files/patch-wcwidth | 17 |
4 files changed, 122 insertions, 34 deletions
diff --git a/net-im/gale/files/patch-acinclude.m4 b/net-im/gale/files/patch-acinclude.m4 new file mode 100644 index 0000000..3960395 --- /dev/null +++ b/net-im/gale/files/patch-acinclude.m4 @@ -0,0 +1,114 @@ +diff -u -N /tmp/gale-0.99egg/acinclude.m4 ./acinclude.m4 +--- /tmp/gale-0.99egg/acinclude.m4 Wed Dec 31 16:00:00 1969 ++++ ./acinclude.m4 Tue Nov 6 13:55:13 2001 +@@ -0,0 +1,110 @@ ++dnl This is a subroutine of AC_OUTPUT. ++dnl It is called after running config.status. ++dnl AC_OUTPUT_SUBDIRS(DIRECTORY...) ++define([AC_OUTPUT_SUBDIRS], ++[ ++ifdef([AC_PROVIDE_AC_PROG_INSTALL], [ac_given_INSTALL="$INSTALL" ++])dnl ++if test "$no_recursion" != yes; then ++ ++ # Remove --cache-file and --srcdir arguments so they do not pile up. ++ ac_sub_configure_args= ++ ac_prev= ++ for ac_arg in $ac_configure_args; do ++ if test -n "$ac_prev"; then ++ ac_prev= ++ continue ++ fi ++ case "$ac_arg" in ++ -cache-file | --cache-file | --cache-fil | --cache-fi \ ++ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ++ ac_prev=cache_file ;; ++ -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ ++ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) ++ ;; ++ -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ++ ac_prev=srcdir ;; ++ -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) ++ ;; ++ *) ac_sub_configure_args="$ac_sub_configure_args $ac_arg" ;; ++ esac ++ done ++ ++ for ac_config_dir in $1; do ++ ++ # Do not complain, so a configure script can configure whichever ++ # parts of a large source tree are present. ++ if test ! -d $srcdir/$ac_config_dir; then ++ continue ++ fi ++ ++ echo configuring in $ac_config_dir ++ ++ case "$srcdir" in ++ .) ;; ++ *) ++ if test -d ./$ac_config_dir || mkdir ./$ac_config_dir; then :; ++ else ++ AC_MSG_ERROR(can not create `pwd`/$ac_config_dir) ++ fi ++ ;; ++ esac ++ ++ ac_popdir=`pwd` ++ cd $ac_config_dir ++ ++changequote(, )dnl ++ # A "../" for each directory in /$ac_config_dir. ++ ac_dots=`echo $ac_config_dir|sed -e 's%^\./%%' -e 's%[^/]$%&/%' -e 's%[^/]*/%../%g'` ++changequote([, ])dnl ++ ++ case "$srcdir" in ++ .) # No --srcdir option. We are building in place. ++ ac_sub_srcdir=$srcdir ;; ++ /*) # Absolute path. ++ ac_sub_srcdir=$srcdir/$ac_config_dir ;; ++ *) # Relative path. ++ ac_sub_srcdir=$ac_dots$srcdir/$ac_config_dir ;; ++ esac ++ ++ # Check for guested configure; otherwise get Cygnus style configure. ++ if test -f $ac_sub_srcdir/configure; then ++ ac_sub_configure=$ac_sub_srcdir/configure ++ elif test -f $ac_sub_srcdir/configure.in; then ++ ac_sub_configure=$ac_configure ++ else ++ AC_MSG_WARN(no configuration information is in $ac_config_dir) ++ ac_sub_configure= ++ fi ++ ++ # The recursion is here. ++ if test -n "$ac_sub_configure"; then ++ ++ # Make the cache file name correct relative to the subdirectory. ++ case "$cache_file" in ++ /*) ac_sub_cache_file=$cache_file ;; ++ *) # Relative path. ++ ac_sub_cache_file="$ac_dots$cache_file" ;; ++ esac ++ifdef([AC_PROVIDE_AC_PROG_INSTALL], ++ [ case "$ac_given_INSTALL" in ++changequote(, )dnl ++ [/$]*) INSTALL="$ac_given_INSTALL" ;; ++changequote([, ])dnl ++ *) INSTALL="$ac_dots$ac_given_INSTALL" ;; ++ esac ++])dnl ++ ++ echo "[running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file] --srcdir=$ac_sub_srcdir" ++ # The eval makes quoting arguments work. ++ if eval ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir ++ then : ++ else ++ AC_MSG_ERROR($ac_sub_configure failed for $ac_config_dir) ++ fi ++ fi ++ ++ cd $ac_popdir ++ done ++fi ++]) diff --git a/net-im/gale/files/patch-configure b/net-im/gale/files/patch-configure deleted file mode 100644 index 0ea0fc4..0000000 --- a/net-im/gale/files/patch-configure +++ /dev/null @@ -1,13 +0,0 @@ ---- configure.orig Mon Jul 2 18:23:09 2001 -+++ configure Mon Jul 2 18:23:19 2001 -@@ -3475,10 +3475,6 @@ - *) # Relative path. - ac_sub_cache_file="$ac_dots$cache_file" ;; - esac -- case "$ac_given_INSTALL" in -- [/$]*) INSTALL="$ac_given_INSTALL" ;; -- *) INSTALL="$ac_dots$ac_given_INSTALL" ;; -- esac - - echo "running ${CONFIG_SHELL-/bin/sh} $ac_sub_configure $ac_sub_configure_args --cache-file=$ac_sub_cache_file --srcdir=$ac_sub_srcdir" - # The eval makes quoting arguments work. diff --git a/net-im/gale/files/patch-crypto b/net-im/gale/files/patch-crypto deleted file mode 100644 index a32964c..0000000 --- a/net-im/gale/files/patch-crypto +++ /dev/null @@ -1,12 +0,0 @@ ---- libgale/crypto_i.c.orig Mon Jul 2 17:33:39 2001 -+++ libgale/crypto_i.c Mon Jul 2 17:38:27 2001 -@@ -3,7 +3,9 @@ - #include <openssl/rand.h> - #include <openssl/err.h> - -+#ifndef __FreeBSD__ - #include <sys/vfs.h> -+#endif /* __FreeBSD__ */ - #include <sys/types.h> - #include <sys/stat.h> - #include <unistd.h> diff --git a/net-im/gale/files/patch-wcwidth b/net-im/gale/files/patch-wcwidth index df5b644..1092dcd 100644 --- a/net-im/gale/files/patch-wcwidth +++ b/net-im/gale/files/patch-wcwidth @@ -1,14 +1,13 @@ ---- libgale/wcwidth.c.orig Mon Jul 2 17:35:54 2001 -+++ libgale/wcwidth.c Mon Jul 2 17:37:48 2001 -@@ -6,7 +6,11 @@ - * Markus Kuhn -- 2000-02-08 -- public domain - */ +--- libgale/wcwidth.c.orig Fri Oct 12 13:45:37 2001 ++++ libgale/wcwidth.c Fri Oct 12 13:45:52 2001 +@@ -8,8 +8,9 @@ -+#ifdef __FreeBSD__ -+#include <rune.h> -+#else /* __FreeBSD__ */ + #ifdef __FreeBSD__ /* peterh@sapros.com */ + #include <rune.h> +-#endif ++#else #include <wchar.h> -+#endif /* __FreeBSD__ */ ++#endif /* These functions define the column width of an ISO 10646 character * as follows: |