summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe McCann <joem@gentoo.org>2006-03-15 01:46:41 +0000
committerJoe McCann <joem@gentoo.org>2006-03-15 01:46:41 +0000
commit78e45800fbd6d021c556558c24ca785168881fb4 (patch)
treebc94ad0119d3efa5edcbe92641937b3de2b24e0f /gnome-base/gnome-session/files
parentadd branding local use for gnome-session (diff)
downloadhistorical-78e45800fbd6d021c556558c24ca785168881fb4.tar.gz
historical-78e45800fbd6d021c556558c24ca785168881fb4.tar.bz2
historical-78e45800fbd6d021c556558c24ca785168881fb4.zip
New version for gnome-2.14
Package-Manager: portage-2.1_pre5-r4
Diffstat (limited to 'gnome-base/gnome-session/files')
-rw-r--r--gnome-base/gnome-session/files/digest-gnome-session-2.14.06
-rw-r--r--gnome-base/gnome-session/files/gnome-session-2.12.0-optional-tcp-wrappers.patch165
-rw-r--r--gnome-base/gnome-session/files/gnome-session-2.14.0-no_libnotify.patch27
3 files changed, 198 insertions, 0 deletions
diff --git a/gnome-base/gnome-session/files/digest-gnome-session-2.14.0 b/gnome-base/gnome-session/files/digest-gnome-session-2.14.0
new file mode 100644
index 000000000000..fdc3be146605
--- /dev/null
+++ b/gnome-base/gnome-session/files/digest-gnome-session-2.14.0
@@ -0,0 +1,6 @@
+MD5 f02a80d3f1435547a479312c15cc1030 gentoo-splash.png 78064
+RMD160 e75052892920e1c919aae1f6e53853c27b2e063f gentoo-splash.png 78064
+SHA256 24fa48bc26db0d446e0098b3e94fd3cdec4610faca0b3282da0bec79bedbc179 gentoo-splash.png 78064
+MD5 def891553bda47cd660be80cf09fe0ee gnome-session-2.14.0.tar.bz2 652379
+RMD160 6082b9bd9ba84be849bcd365635e8f0733d4d6e3 gnome-session-2.14.0.tar.bz2 652379
+SHA256 08f5605dd33a56833b0b9db52ae120d8e950e676550e70bdf839ccc26b345187 gnome-session-2.14.0.tar.bz2 652379
diff --git a/gnome-base/gnome-session/files/gnome-session-2.12.0-optional-tcp-wrappers.patch b/gnome-base/gnome-session/files/gnome-session-2.12.0-optional-tcp-wrappers.patch
new file mode 100644
index 000000000000..70e3842d9b49
--- /dev/null
+++ b/gnome-base/gnome-session/files/gnome-session-2.12.0-optional-tcp-wrappers.patch
@@ -0,0 +1,165 @@
+--- configure.in.orig 2006-01-05 18:39:53.000000000 -0600
++++ configure.in 2006-01-05 18:59:19.000000000 -0600
+@@ -190,80 +190,89 @@
+ dnl -------------------
+ dnl | Use TCP Wrappers? |--------------------------------------
+ dnl -------------------
+-AC_MSG_CHECKING(whether to use TCP wrappers)
+-LIBWRAP_PATH=""
+-for I in $LDFLAGS $LIBS -L/usr/lib -L/usr/local/lib; do
+- case "$I" in
+- -L*)
+- THEFILE="`echo $I | sed -e 's,^-L,,'`"
+- echo "From $I, checking in dir $THEFILE for libwrap.a" 1>&5
+- if test -f $THEFILE/libwrap.a; then
+- LIBWRAP_PATH="$THEFILE"
+- echo "Found in $LIBWRAP_PATH" 1>&5
+- break
+- fi
+- esac
+-done
+-if test -n "$LIBWRAP_PATH"; then
+- AC_MSG_RESULT(yes)
+-else
+- AC_MSG_RESULT(no)
++AC_ARG_ENABLE(tcp-wrappers,
++ AC_HELP_STRING([--disable-tcp-wrappers],[disable tcp wrapper support]),,
++ [enable_tcp_wrappers=yes])
++
++if test x$enable_tcp_wrappers = xyes ; then
++ AC_MSG_CHECKING(for TCP wrappers)
++ LIBWRAP_PATH=""
++ for I in $LDFLAGS $LIBS -L/usr/lib -L/usr/local/lib; do
++ case "$I" in
++ -L*)
++ THEFILE="`echo $I | sed -e 's,^-L,,'`"
++ echo "From $I, checking in dir $THEFILE for libwrap.a" 1>&5
++ if test -f $THEFILE/libwrap.a; then
++ LIBWRAP_PATH="$THEFILE"
++ echo "Found in $LIBWRAP_PATH" 1>&5
++ break
++ fi
++ esac
++ done
++
++ if test -n "$LIBWRAP_PATH"; then
++ AC_MSG_RESULT(yes)
++ else
++ AC_MSG_ERROR("libwrap not found!")
++ fi
++
++ nm $LIBWRAP_PATH/libwrap.* | grep 'T setenv' && LIBWRAP_PATH=""
++ if test -z "$LIBWRAP_PATH"; then
++ echo "*********************************************************"
++ echo " You have a broken TCP wrappers library (setenv included)"
++ echo " Please get the latest TCP wrappers package from your OS"
++ echo " vendor, or recompile TCP wrappers to not include a"
++ echo " setenv() implementation."
++ echo
++ echo "Not using TCP wrappers after all."
++ echo "*********************************************************"
++ fi
++
++ dnl We need the header files too!
++ if test "$ac_cv_header_syslog_h" != yes || test "$ac_cv_header_tcpd_h" != yes; then
++ echo "Resetting $LIBWRAP_PATH because syslog is $ac_cv_header_syslog_h and tcpd is $ac_cv_header_tcpd_h" 1>&5
++ LIBWRAP_PATH=""
++ fi
++
++ dnl find out if we need -lnsl or whatever
++ LIBWRAP_NSL=
++ if test -n "$LIBWRAP_PATH"; then
++ AC_MSG_CHECKING(whether -lwrap requires -lnsl)
++ ORIG_LIBS="$LIBS"
++ LIBS="-L$LIBWRAP_PATH -lwrap $LIBS"
++ AC_TRY_LINK([
++ extern int hosts_access;
++ int allow_severity, deny_severity;
++ ],
++ [return hosts_access;],,[
++ dnl try with -lnsl
++ OLD_LIBS="$LIBS"
++ LIBS="$LIBS -lnsl"
++ AC_TRY_LINK([
++ extern int hosts_access;
++ int allow_severity, deny_severity;
++ ],
++ [return hosts_access;],
++ LIBWRAP_NSL="-lnsl",
++ LIBWRAP_PATH="")
++ LIBS="$OLD_LIBS"
++ ])
++ LIBS="$ORIG_LIBS"
++ if test -n "$LIB_NSL"; then
++ AC_MSG_RESULT(yes)
++ LIBS="$LIBS $LIB_NSL"
++ else
++ AC_MSG_RESULT(no)
++ fi
++ fi
++
++ LIBWRAP_LIBS=
++ if test -n "$LIBWRAP_PATH"; then
++ LIBWRAP_LIBS="-L$LIBWRAP_PATH -lwrap $LIBWRAP_NSL"
++ AC_DEFINE(HAVE_HOSTS_ACCESS, 1, [Define to true if host_access exists])
++ fi
++ AC_SUBST(LIBWRAP_LIBS)
+ fi
+-
+-if test -n "$LIBWRAP_PATH"; then
+- nm $LIBWRAP_PATH/libwrap.* | grep 'T setenv' && LIBWRAP_PATH=""
+- if test -z "$LIBWRAP_PATH"; then
+- echo "*********************************************************"
+- echo " You have a broken TCP wrappers library (setenv included)"
+- echo " Please get the latest TCP wrappers package from your OS"
+- echo " vendor, or recompile TCP wrappers to not include a"
+- echo " setenv() implementation."
+- echo
+- echo "Not using TCP wrappers after all."
+- echo "*********************************************************"
+- fi
+-fi
+-dnl We need the header files too!
+-if test "$ac_cv_header_syslog_h" != yes || test "$ac_cv_header_tcpd_h" != yes; then
+- echo "Resetting $LIBWRAP_PATH because syslog is $ac_cv_header_syslog_h and tcpd is $ac_cv_header_tcpd_h" 1>&5
+- LIBWRAP_PATH=""
+-fi
+-
+-dnl find out if we need -lnsl or whatever
+-LIBWRAP_NSL=
+-if test -n "$LIBWRAP_PATH"; then
+- AC_MSG_CHECKING(whether -lwrap requires -lnsl)
+- ORIG_LIBS="$LIBS"
+- LIBS="-L$LIBWRAP_PATH -lwrap $LIBS"
+- AC_TRY_LINK([
+-extern int hosts_access;
+-int allow_severity, deny_severity;
+-], [return hosts_access;], ,[
+-dnl try with -lnsl
+-OLD_LIBS="$LIBS"
+-LIBS="$LIBS -lnsl"
+-AC_TRY_LINK([
+-extern int hosts_access;
+-int allow_severity, deny_severity;
+-], [return hosts_access;], LIBWRAP_NSL="-lnsl",
+-LIBWRAP_PATH="")
+-LIBS="$OLD_LIBS"
+-])
+- LIBS="$ORIG_LIBS"
+-if test -n "$LIB_NSL"; then
+- AC_MSG_RESULT(yes)
+- LIBS="$LIBS $LIB_NSL"
+-else
+- AC_MSG_RESULT(no)
+-fi
+-fi
+-LIBWRAP_LIBS=
+-if test -n "$LIBWRAP_PATH"; then
+- LIBWRAP_LIBS="-L$LIBWRAP_PATH -lwrap $LIBWRAP_NSL"
+- AC_DEFINE(HAVE_HOSTS_ACCESS, 1,
+- [Define to true if host_access exists])
+-fi
+-AC_SUBST(LIBWRAP_LIBS)
+ dnl -----------------------------------------------------------
+
+
diff --git a/gnome-base/gnome-session/files/gnome-session-2.14.0-no_libnotify.patch b/gnome-base/gnome-session/files/gnome-session-2.14.0-no_libnotify.patch
new file mode 100644
index 000000000000..7ab766393bd8
--- /dev/null
+++ b/gnome-base/gnome-session/files/gnome-session-2.14.0-no_libnotify.patch
@@ -0,0 +1,27 @@
+--- configure.in.orig 2006-03-14 20:01:25.000000000 -0500
++++ configure.in 2006-03-14 20:02:56.000000000 -0500
+@@ -84,24 +84,6 @@
+
+ PKG_CHECK_MODULES(GNOME_SESSION, gtk+-2.0 >= $GTK_REQUIRED libgnomeui-2.0 >= $LIBGNOMEUI_REQUIRED $ESOUND_MODULE gnome-desktop-2.0)
+
+-dnl Check if libnotify is present
+-
+-LIBNOTIFY_REQUIRED=0.2.1
+-LIBNOTIFY_CFLAGS=
+-LIBNOTIFY_LIBS=
+-PKG_CHECK_MODULES(LIBNOTIFY, libnotify >= $LIBNOTIFY_REQUIRED,
+- HAVE_LIBNOTIFY="yes", HAVE_LIBNOTIFY="no")
+-
+-if test "x$HAVE_LIBNOTIFY" = "xyes"; then
+- AC_DEFINE(HAVE_LIBNOTIFY, 1, [libnotify available])
+- AC_MSG_RESULT(available)
+-else
+- AC_MSG_RESULT(no)
+-fi
+-
+-AC_SUBST(LIBNOTIFY_CFLAGS)
+-AC_SUBST(LIBNOTIFY_LIBS)
+-
+ dnl gconf checks
+ AC_PATH_PROG(GCONFTOOL, gconftool-2, no)
+