summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2006-04-21 08:44:39 +0000
committerAlin Năstac <mrness@gentoo.org>2006-04-21 08:44:39 +0000
commitce2e7519e63f7e075da5dc0fc97f228d4b105db9 (patch)
treee438da7fd8f1e7cb1bd0802bc4d805446ce58c24 /kde-misc/kbeam/files
parentVersion bump. (diff)
downloadhistorical-ce2e7519e63f7e075da5dc0fc97f228d4b105db9.tar.gz
historical-ce2e7519e63f7e075da5dc0fc97f228d4b105db9.tar.bz2
historical-ce2e7519e63f7e075da5dc0fc97f228d4b105db9.zip
Use AM_PATH_OPENOBEX definition installed by dev-libs/openobex (#122262)
Package-Manager: portage-2.0.54
Diffstat (limited to 'kde-misc/kbeam/files')
-rw-r--r--kde-misc/kbeam/files/digest-kbeam-0.61-r11
-rw-r--r--kde-misc/kbeam/files/kbeam-0.61-aclocal_openobex.patch63
2 files changed, 64 insertions, 0 deletions
diff --git a/kde-misc/kbeam/files/digest-kbeam-0.61-r1 b/kde-misc/kbeam/files/digest-kbeam-0.61-r1
new file mode 100644
index 000000000000..fbf4b5a0dfa7
--- /dev/null
+++ b/kde-misc/kbeam/files/digest-kbeam-0.61-r1
@@ -0,0 +1 @@
+MD5 a763ede339b10110b9e97f0ec973c2b0 kbeam-0.61.tar.gz 650233
diff --git a/kde-misc/kbeam/files/kbeam-0.61-aclocal_openobex.patch b/kde-misc/kbeam/files/kbeam-0.61-aclocal_openobex.patch
new file mode 100644
index 000000000000..f0f04fc69921
--- /dev/null
+++ b/kde-misc/kbeam/files/kbeam-0.61-aclocal_openobex.patch
@@ -0,0 +1,63 @@
+diff -Nru kbeam-0.61.orig/acinclude.m4 kbeam-0.61/acinclude.m4
+--- kbeam-0.61.orig/acinclude.m4 2004-09-02 00:33:09.000000000 +0300
++++ kbeam-0.61/acinclude.m4 2006-04-21 11:18:21.791165500 +0300
+@@ -11260,59 +11260,3 @@
+ SED=$lt_cv_path_SED
+ AC_MSG_RESULT([$SED])
+ ])
+-dnl Check for openobex library
+-dnl Written by Pontus Fuchs 2000-08-18
+-dnl Version checking fixed by Christian W. Zuckschwerdt 2002-10-17
+-
+-AC_DEFUN([AM_PATH_OPENOBEX], [
+- AC_PATH_PROG(OPENOBEX_CONFIG, openobex-config, no)
+-
+- if test "$OPENOBEX_CONFIG" = "no" ; then
+- AC_MSG_ERROR(openobex-config not found. Perhaps openobex is not installed.)
+- fi
+-
+- min_obex_version=ifelse([$1], ,0.9.6,$1)
+- AC_MSG_CHECKING(for openobex - version >= $min_obex_version)
+-
+- OPENOBEX_CFLAGS=`$OPENOBEX_CONFIG --cflags`
+- OPENOBEX_LIBS=`$OPENOBEX_CONFIG --libs`
+-
+- obex_config_version=`$OPENOBEX_CONFIG --version`
+-
+- obex_config_major_version=`$OPENOBEX_CONFIG --version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+- obex_config_minor_version=`$OPENOBEX_CONFIG --version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+- obex_config_micro_version=`$OPENOBEX_CONFIG --version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+-
+- obex_req_major_version=`echo $min_obex_version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'`
+- obex_req_minor_version=`echo $min_obex_version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'`
+- obex_req_micro_version=`echo $min_obex_version | \
+- sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'`
+-
+-
+- if test $obex_req_major_version -lt $obex_config_major_version ; then
+- obex_config_version_ok="yes"
+- fi
+- if test $obex_req_major_version -eq $obex_config_major_version ; then
+- if test $obex_req_minor_version -lt $obex_config_minor_version ; then
+- obex_config_version_ok="yes"
+- fi
+- if test $obex_req_minor_version -eq $obex_config_minor_version ; then
+- if test $obex_req_micro_version -le $obex_config_micro_version ; then
+- obex_config_version_ok="yes"
+- fi
+- fi
+- fi
+-
+- if test "$obex_config_version_ok" != "yes" ; then
+- AC_MSG_ERROR(Installed openobex library too old ($obex_config_version))
+- fi
+-
+- AC_SUBST(OPENOBEX_CFLAGS)
+- AC_SUBST(OPENOBEX_LIBS)
+- AC_MSG_RESULT(yes)
+-])