diff options
author | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-03-23 18:49:09 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@gentoo.org> | 2006-03-23 18:49:09 +0000 |
commit | b45d277cfbff841d8fbdb375e81a947bd502e8fb (patch) | |
tree | b45b9fb8ee0700e7c029c6ee841ac13e665768dc /gnome-extra/nautilus-sendto/files | |
parent | Adding gaim useflag for nautilus-sendto (diff) | |
download | gentoo-2-b45d277cfbff841d8fbdb375e81a947bd502e8fb.tar.gz gentoo-2-b45d277cfbff841d8fbdb375e81a947bd502e8fb.tar.bz2 gentoo-2-b45d277cfbff841d8fbdb375e81a947bd502e8fb.zip |
Initial import of nautilus-sendto extension (bug #78653)
(Portage version: 2.1_pre6-r5)
Diffstat (limited to 'gnome-extra/nautilus-sendto/files')
-rw-r--r-- | gnome-extra/nautilus-sendto/files/digest-nautilus-sendto-0.5 | 3 | ||||
-rw-r--r-- | gnome-extra/nautilus-sendto/files/nautilus-sendto-0.5-configure-options.patch | 101 |
2 files changed, 104 insertions, 0 deletions
diff --git a/gnome-extra/nautilus-sendto/files/digest-nautilus-sendto-0.5 b/gnome-extra/nautilus-sendto/files/digest-nautilus-sendto-0.5 new file mode 100644 index 000000000000..1413f2e2aa7c --- /dev/null +++ b/gnome-extra/nautilus-sendto/files/digest-nautilus-sendto-0.5 @@ -0,0 +1,3 @@ +MD5 e43a5e51270ef3e0f4743ed4d23f7409 nautilus-sendto-0.5.tar.bz2 268518 +RMD160 588d889fde1dcdac436694f0730e1720d7e10e84 nautilus-sendto-0.5.tar.bz2 268518 +SHA256 63709f0b8dc4c8006c9aa792b2898c3e956cb457b1c49e9e552d2fd1c4df7d38 nautilus-sendto-0.5.tar.bz2 268518 diff --git a/gnome-extra/nautilus-sendto/files/nautilus-sendto-0.5-configure-options.patch b/gnome-extra/nautilus-sendto/files/nautilus-sendto-0.5-configure-options.patch new file mode 100644 index 000000000000..4699059ddc23 --- /dev/null +++ b/gnome-extra/nautilus-sendto/files/nautilus-sendto-0.5-configure-options.patch @@ -0,0 +1,101 @@ +--- configure.in.orig 2006-01-07 16:55:04.000000000 -0600 ++++ configure.in 2006-01-07 17:05:38.000000000 -0600 +@@ -52,60 +52,57 @@ + AC_SUBST(NAUTILUS_SENDTO_CFLAGS) + AC_SUBST(NAUTILUS_SENDTO_LIBS) + +-dnl Libebook support ++dnl Evolution (libebook) Support + dnl --------------------------------- + +-PKG_CHECK_MODULES(NST_EBOOK, libebook-1.2 >= $EBOOK_REQUIRED, +- [ +- AC_SUBST(NST_EBOOK_CFLAGS) +- AC_SUBST(NST_EBOOK_LIBS) +- echo "Using libebook-1.2 !" +- enable_evolution=yes +- ], +- [ +- echo "Building without evolution" +- enable_evolution=no +- ] +-) ++AC_ARG_ENABLE([evolution], ++ AC_HELP_STRING([--enable-evolution],[enable support for evolution]),, ++ [enable_evolution=no]) ++ ++if test x$enable_evolution = xyes ; then ++ PKG_CHECK_MODULES(NST_EBOOK, [libebook-1.2 >= $EBOOK_REQUIRED]) ++ ++ AC_SUBST(NST_EBOOK_CFLAGS) ++ AC_SUBST(NST_EBOOK_LIBS) ++fi + + AM_CONDITIONAL(HAVE_EVOLUTION, test "x$enable_evolution" = "xyes") + +-dnl Gaim support if it's installed ++dnl Gaim Support + dnl --------------------------------- + ++AC_ARG_ENABLE([gaim], ++ AC_HELP_STRING([--enable-gaim],[enable support for gaim]),, ++ [enable_gaim=no]) ++ ++if test x$enable_gaim = xyes ; then ++ PKG_CHECK_MODULES(GAIM, gaim >= $GAIM_REQUIRED) ++ ++ AC_SUBST(GAIM_CFLAGS) ++ AC_SUBST(GAIM_LIBS) + +-PKG_CHECK_MODULES(GAIM, gaim >= $GAIM_REQUIRED, +- [ +- AC_SUBST(GAIM_CFLAGS) +- AC_SUBST(GAIM_LIBS) +- GAIM_LIBDIR=`pkg-config --variable=libdir gaim` +- GAIM_DATADIR=`pkg-config --variable=datadir gaim` +- AC_SUBST(GAIM_LIBDIR) +- AC_SUBST(GAIM_DATADIR) +- enable_gaim=yes +- ], +- [ +- echo "Building without gaim" +- enable_gaim=no +- ] +-) ++ GAIM_LIBDIR=`pkg-config --variable=libdir gaim` ++ GAIM_DATADIR=`pkg-config --variable=datadir gaim` ++ ++ AC_SUBST(GAIM_LIBDIR) ++ AC_SUBST(GAIM_DATADIR) ++fi + + AM_CONDITIONAL(HAVE_GAIM, test "x$enable_gaim" = "xyes") + +-dnl Bluetooth support if it's installed ++dnl Bluetooth Support + dnl ----------------------------------- + +-PKG_CHECK_MODULES(BLUETOOTH, gnome-bluetooth >= $BLUETOOTH_REQUIRED, +- [ +- AC_SUBST(BLUETOOTH_CFLAGS) +- AC_SUBST(BLUETOOTH_LIBS) +- enable_bluetooth=yes +- ], +- [ +- echo "Building without Bluetooth" +- enable_bluetooth=no +- ] +-) ++AC_ARG_ENABLE([bluetooth], ++ AC_HELP_STRING([--enable-bluetooth],[enable support for bluetooth]),, ++ [enable_bluetooth=no]) ++ ++if test x$enable_bluetooth = xyes ; then ++ PKG_CHECK_MODULES(BLUETOOTH, gnome-bluetooth >= $BLUETOOTH_REQUIRED) ++ ++ AC_SUBST(BLUETOOTH_CFLAGS) ++ AC_SUBST(BLUETOOTH_LIBS) ++fi + + AM_CONDITIONAL(HAVE_BLUETOOTH, test "x$enable_bluetooth" = "xyes") + |