summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-08-26 23:11:10 +0000
committerMike Frysinger <vapier@gentoo.org>2006-08-26 23:11:10 +0000
commit375185be47a2c6ab1b6fd7628ed6e64ea3dd85e9 (patch)
treee36109e7037dd59da14f057955929bab4dd335cd /app-mobilephone/tsemgr/files
parentfix header install in previous commit (diff)
downloadgentoo-2-375185be47a2c6ab1b6fd7628ed6e64ea3dd85e9.tar.gz
gentoo-2-375185be47a2c6ab1b6fd7628ed6e64ea3dd85e9.tar.bz2
gentoo-2-375185be47a2c6ab1b6fd7628ed6e64ea3dd85e9.zip
initial import #109262 by Alain
(Portage version: 2.1.1_rc1)
Diffstat (limited to 'app-mobilephone/tsemgr/files')
-rw-r--r--app-mobilephone/tsemgr/files/digest-tsemgr-0.083
-rw-r--r--app-mobilephone/tsemgr/files/tsemgr-0.08-build.patch43
2 files changed, 46 insertions, 0 deletions
diff --git a/app-mobilephone/tsemgr/files/digest-tsemgr-0.08 b/app-mobilephone/tsemgr/files/digest-tsemgr-0.08
new file mode 100644
index 000000000000..9cda37319968
--- /dev/null
+++ b/app-mobilephone/tsemgr/files/digest-tsemgr-0.08
@@ -0,0 +1,3 @@
+MD5 97e465b6966877ded388fd315264f686 tsemgr-0.08.tar.gz 165757
+RMD160 45eae15bac3566c9f3792872676e18ffb8f531e3 tsemgr-0.08.tar.gz 165757
+SHA256 2ee9c5e7ddadd962b2f292b5af5a5cde2d3941d5b79874fe72e18e610fed8f26 tsemgr-0.08.tar.gz 165757
diff --git a/app-mobilephone/tsemgr/files/tsemgr-0.08-build.patch b/app-mobilephone/tsemgr/files/tsemgr-0.08-build.patch
new file mode 100644
index 000000000000..7567200181dc
--- /dev/null
+++ b/app-mobilephone/tsemgr/files/tsemgr-0.08-build.patch
@@ -0,0 +1,43 @@
+--- configure.ac
++++ configure.ac
+@@ -16,34 +16,17 @@ AC_DEFINE(REMOTE_CTREE_FILE, ["tsemgr_re
+ AC_DEFINE(BASE_CONFIG_FILE, ["tsemgr.conf"], [Default config file.])
+
+ # Add flags for Gtk.
+-AC_CHECK_PROG(GTK_CONFIG, gtk-config, yes, no, $PATH)
+-if test $GTK_CONFIG = "no" ; then
+- AC_MSG_ERROR(gtk-config not found. Gtk is required for $PACKAGE)
+-fi
++PKG_CHECK_MODULES([GTK], [gtk+ >= 1.2])
+
+-CFLAGS="$CFLAGS `gtk-config --cflags`"
+-LIBS="$LIBS `gtk-config --libs`"
++CFLAGS="$CFLAGS $GTK_CFLAGS"
++LIBS="$LIBS $GTK_LIBS"
+
+
+ # Add flags for OpenObex.
+-AC_CHECK_PROG(OPENOBEX_CONFIG, openobex-config, yes, no, $PATH)
+-if test $GTK_CONFIG = "no" ; then
+- AC_MSG_ERROR(openobex-config not found. OpenObex is requried for $PACKAGE)
+-fi
++PKG_CHECK_MODULES([OPENOBEX], [openobex >= 1.0])
+
+-AC_MSG_CHECKING(OpenObex version)
+-OO_VERSION="`openobex-config --version`"
+-AC_MSG_RESULT($OO_VERSION)
+-
+-case $OO_VERSION in
+-
+-1.*.*) ;;
+-*) AC_MSG_ERROR(OpenObex library version is too old.)
+-
+-esac
+-
+-CFLAGS="$CFLAGS `openobex-config --cflags`"
+-LIBS="$LIBS `openobex-config --libs`"
++CFLAGS="$CFLAGS $OPENOBEX_CFLAGS"
++LIBS="$LIBS $OPENOBEX_LIBS"
+
+
+ # Look for the ezV24 library.