mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-20 17:55:15 +03:00
testing/libappindicator: new aport
https://launchpad.net/libappindicator Library that allow applications to export menus
This commit is contained in:
parent
9306f2d266
commit
9d7eef4be3
4 changed files with 547 additions and 0 deletions
53
testing/libappindicator/APKBUILD
Normal file
53
testing/libappindicator/APKBUILD
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
# Contributor: Leo <thinkabit.ukim@gmail.com>
|
||||||
|
# Maintainer: Leo <thinkabit.ukim@gmail.com>
|
||||||
|
pkgname=libappindicator
|
||||||
|
pkgver=12.10.0
|
||||||
|
pkgrel=0
|
||||||
|
pkgdesc="Library that allow applications to export menus"
|
||||||
|
options="!check" # Requires dbus-test-runner
|
||||||
|
url="https://launchpad.net/libappindicator"
|
||||||
|
arch="all"
|
||||||
|
license="LGPL-2.1-or-later"
|
||||||
|
makedepends="glib-dev gtk+3.0-dev glib-networking libdbusmenu-glib-dev
|
||||||
|
libdbusmenu-gtk3-dev libindicator-dev dbus-glib-dev vala"
|
||||||
|
subpackages="$pkgname-dev"
|
||||||
|
source="https://launchpad.net/libappindicator/${pkgver%.*}/$pkgver/+download/libappindicator-$pkgver.tar.gz
|
||||||
|
improved-plasma.patch
|
||||||
|
incompatible_pointer_build_fix.patch
|
||||||
|
no-python.patch
|
||||||
|
"
|
||||||
|
|
||||||
|
prepare() {
|
||||||
|
default_prepare
|
||||||
|
update_config_sub
|
||||||
|
}
|
||||||
|
|
||||||
|
build() {
|
||||||
|
export CFLAGS="$CFLAGS -Wno-error"
|
||||||
|
./configure \
|
||||||
|
--build=$CBUILD \
|
||||||
|
--host=$CHOST \
|
||||||
|
--prefix=/usr \
|
||||||
|
--sysconfdir=/etc \
|
||||||
|
--mandir=/usr/share/man \
|
||||||
|
--localstatedir=/var \
|
||||||
|
--disable-gtk-doc-html \
|
||||||
|
--disable-mono-test \
|
||||||
|
--disable-static \
|
||||||
|
--with-gtk=3
|
||||||
|
make
|
||||||
|
}
|
||||||
|
|
||||||
|
check() {
|
||||||
|
make check
|
||||||
|
}
|
||||||
|
|
||||||
|
package() {
|
||||||
|
make DESTDIR="$pkgdir" install
|
||||||
|
rm -rf "$pkgdir"/usr/share/gtk-doc
|
||||||
|
}
|
||||||
|
|
||||||
|
sha512sums="317a22a23c8ed84e74207b64b2e9683992d1fb7208176637a051dfe925974f966d1cfa31e650b45eaf839ab61641dee8fbebc8a07882a09b0dd766d88b8d5b9a libappindicator-12.10.0.tar.gz
|
||||||
|
e2930b9942b800a7a14faf4c27d59073c166e24bb1675f8604a0b5ac3fbd101f3642f7221bc8f5219231c8f021a2a8c4aa203f971ea5f2f9225be83d807cb80e improved-plasma.patch
|
||||||
|
bda93822c43dbc153202e7cd1e4b5c5fde5ca1ec35a1314bee37707f9cf4483c52ba79d3c808592f5e62470d45dc6a7b8eb5cfe60295a8e5446128b0643e36c5 incompatible_pointer_build_fix.patch
|
||||||
|
faa160e93b9a5ca7b9e2cee978f225de9b6ab5a17ecb982987e3dacf61c148ffd739fe956db7c949987a80cc401a7f88ceb3417b049152f7c4cbbae60f0afde9 no-python.patch"
|
59
testing/libappindicator/improved-plasma.patch
Normal file
59
testing/libappindicator/improved-plasma.patch
Normal file
|
@ -0,0 +1,59 @@
|
||||||
|
From c38d64aa3c12bea271d331b6c52a1130ca758a69 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Sebastian Krzyszkowiak <dos@dosowisko.net>
|
||||||
|
Date: Sun, 12 Jul 2015 16:25:07 +0200
|
||||||
|
Subject: [PATCH] Add support for Activate method for improved Plasma 5 user
|
||||||
|
experience
|
||||||
|
|
||||||
|
---
|
||||||
|
src/app-indicator.c | 3 ++-
|
||||||
|
src/gen-notification-item.xml.c | 4 ++++
|
||||||
|
src/notification-item.xml | 4 ++++
|
||||||
|
3 files changed, 10 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/src/app-indicator.c b/src/app-indicator.c
|
||||||
|
index 2e98b48..14be69f 100644
|
||||||
|
--- a/src/app-indicator.c
|
||||||
|
+++ b/src/app-indicator.c
|
||||||
|
@@ -1082,7 +1082,8 @@ bus_method_call (GDBusConnection * connection, const gchar * sender,
|
||||||
|
delta = ABS(delta);
|
||||||
|
g_signal_emit(app, signals[SCROLL_EVENT], 0, delta, direction);
|
||||||
|
|
||||||
|
- } else if (g_strcmp0(method, "SecondaryActivate") == 0 ||
|
||||||
|
+ } else if (g_strcmp0(method, "Activate") == 0 ||
|
||||||
|
+ g_strcmp0(method, "SecondaryActivate") == 0 ||
|
||||||
|
g_strcmp0(method, "XAyatanaSecondaryActivate") == 0) {
|
||||||
|
GtkWidget *menuitem = priv->sec_activate_target;
|
||||||
|
|
||||||
|
diff --git a/src/gen-notification-item.xml.c b/src/gen-notification-item.xml.c
|
||||||
|
index 0bc6ab2..18a288b 100644
|
||||||
|
--- a/src/gen-notification-item.xml.c
|
||||||
|
+++ b/src/gen-notification-item.xml.c
|
||||||
|
@@ -25,6 +25,10 @@ const char * _notification_item =
|
||||||
|
" <arg type=\"i\" name=\"delta\" direction=\"in\" />\n"
|
||||||
|
" <arg type=\"s\" name=\"orientation\" direction=\"in\" />\n"
|
||||||
|
" </method>\n"
|
||||||
|
+" <method name=\"Activate\">\n"
|
||||||
|
+" <arg type=\"i\" name=\"x\" direction=\"in\" />\n"
|
||||||
|
+" <arg type=\"i\" name=\"y\" direction=\"in\" />\n"
|
||||||
|
+" </method>\n"
|
||||||
|
" <method name=\"SecondaryActivate\">\n"
|
||||||
|
" <arg type=\"i\" name=\"x\" direction=\"in\" />\n"
|
||||||
|
" <arg type=\"i\" name=\"y\" direction=\"in\" />\n"
|
||||||
|
diff --git a/src/notification-item.xml b/src/notification-item.xml
|
||||||
|
index c93afd7..72d36eb 100644
|
||||||
|
--- a/src/notification-item.xml
|
||||||
|
+++ b/src/notification-item.xml
|
||||||
|
@@ -24,6 +24,10 @@
|
||||||
|
<arg type="i" name="delta" direction="in" />
|
||||||
|
<arg type="s" name="orientation" direction="in" />
|
||||||
|
</method>
|
||||||
|
+ <method name="Activate">
|
||||||
|
+ <arg type="i" name="x" direction="in" />
|
||||||
|
+ <arg type="i" name="y" direction="in" />
|
||||||
|
+ </method>
|
||||||
|
<method name="SecondaryActivate">
|
||||||
|
<arg type="i" name="x" direction="in" />
|
||||||
|
<arg type="i" name="y" direction="in" />
|
||||||
|
--
|
||||||
|
2.4.5
|
||||||
|
|
12
testing/libappindicator/incompatible_pointer_build_fix.patch
Normal file
12
testing/libappindicator/incompatible_pointer_build_fix.patch
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
diff -up libappindicator-12.10.0/src/app-indicator.c.build_fix libappindicator-12.10.0/src/app-indicator.c
|
||||||
|
--- libappindicator-12.10.0/src/app-indicator.c.build_fix 2018-04-10 14:43:57.134400594 +0200
|
||||||
|
+++ libappindicator-12.10.0/src/app-indicator.c 2018-04-10 14:45:34.655448722 +0200
|
||||||
|
@@ -2196,7 +2196,7 @@ app_indicator_set_secondary_activate_tar
|
||||||
|
|
||||||
|
g_return_if_fail (GTK_IS_WIDGET (menuitem));
|
||||||
|
|
||||||
|
- priv->sec_activate_target = g_object_ref(G_OBJECT(menuitem));
|
||||||
|
+ priv->sec_activate_target = g_object_ref(menuitem);
|
||||||
|
priv->sec_activate_enabled = widget_is_menu_child(self, menuitem);
|
||||||
|
g_signal_connect(menuitem, "parent-set", G_CALLBACK(sec_activate_target_parent_changed), self);
|
||||||
|
}
|
423
testing/libappindicator/no-python.patch
Normal file
423
testing/libappindicator/no-python.patch
Normal file
|
@ -0,0 +1,423 @@
|
||||||
|
diff --git a/bindings/Makefile.am b/bindings/Makefile.am
|
||||||
|
index d1f6d73..dccca6c 100644
|
||||||
|
--- a/bindings/Makefile.am
|
||||||
|
+++ b/bindings/Makefile.am
|
||||||
|
@@ -3,7 +3,6 @@ SUBDIRS = \
|
||||||
|
vala
|
||||||
|
else
|
||||||
|
SUBDIRS = \
|
||||||
|
- python \
|
||||||
|
vala
|
||||||
|
endif
|
||||||
|
|
||||||
|
diff --git a/bindings/Makefile.in b/bindings/Makefile.in
|
||||||
|
index e56458c..f869854 100644
|
||||||
|
--- a/bindings/Makefile.in
|
||||||
|
+++ b/bindings/Makefile.in
|
||||||
|
@@ -93,7 +93,7 @@ AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
|
||||||
|
distdir
|
||||||
|
ETAGS = etags
|
||||||
|
CTAGS = ctags
|
||||||
|
-DIST_SUBDIRS = python vala mono
|
||||||
|
+DIST_SUBDIRS = vala mono
|
||||||
|
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||||
|
am__relativize = \
|
||||||
|
dir0=`pwd`; \
|
||||||
|
@@ -301,7 +301,7 @@ target_alias = @target_alias@
|
||||||
|
top_build_prefix = @top_build_prefix@
|
||||||
|
top_builddir = @top_builddir@
|
||||||
|
top_srcdir = @top_srcdir@
|
||||||
|
-@USE_GTK3_FALSE@SUBDIRS = python vala $(am__append_1)
|
||||||
|
+@USE_GTK3_FALSE@SUBDIRS = vala $(am__append_1)
|
||||||
|
@USE_GTK3_TRUE@SUBDIRS = vala $(am__append_1)
|
||||||
|
all: all-recursive
|
||||||
|
|
||||||
|
diff --git a/configure b/configure
|
||||||
|
index 5174b3f..5896f55 100755
|
||||||
|
--- a/configure
|
||||||
|
+++ b/configure
|
||||||
|
@@ -13702,365 +13702,6 @@ else
|
||||||
|
with_localinstall=no
|
||||||
|
fi
|
||||||
|
|
||||||
|
-
|
||||||
|
-###########################
|
||||||
|
-# Python
|
||||||
|
-###########################
|
||||||
|
-
|
||||||
|
-PYGTK_REQUIRED=2.14.0
|
||||||
|
-PYGOBJECT_REQUIRED=0.22
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- if test -n "$PYTHON"; then
|
||||||
|
- # If the user set $PYTHON, use it and don't search something else.
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $PYTHON version >= 2.3.5" >&5
|
||||||
|
-$as_echo_n "checking whether $PYTHON version >= 2.3.5... " >&6; }
|
||||||
|
- prog="import sys, string
|
||||||
|
-# split strings by '.' and convert to numeric. Append some zeros
|
||||||
|
-# because we need at least 4 digits for the hex conversion.
|
||||||
|
-minver = map(int, string.split('2.3.5', '.')) + [0, 0, 0]
|
||||||
|
-minverhex = 0
|
||||||
|
-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
|
||||||
|
-sys.exit(sys.hexversion < minverhex)"
|
||||||
|
- if { echo "$as_me:$LINENO: $PYTHON -c "$prog"" >&5
|
||||||
|
- ($PYTHON -c "$prog") >&5 2>&5
|
||||||
|
- ac_status=$?
|
||||||
|
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
- (exit $ac_status); }; then :
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
-$as_echo "yes" >&6; }
|
||||||
|
-else
|
||||||
|
- as_fn_error $? "too old" "$LINENO" 5
|
||||||
|
-fi
|
||||||
|
- am_display_PYTHON=$PYTHON
|
||||||
|
- else
|
||||||
|
- # Otherwise, try each interpreter until we find one that satisfies
|
||||||
|
- # VERSION.
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a Python interpreter with version >= 2.3.5" >&5
|
||||||
|
-$as_echo_n "checking for a Python interpreter with version >= 2.3.5... " >&6; }
|
||||||
|
-if ${am_cv_pathless_PYTHON+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
-
|
||||||
|
- for am_cv_pathless_PYTHON in python python2 python2.4 python2.3 python2.2 python2.1 python2.0 python1.6 python1.5 none; do
|
||||||
|
- test "$am_cv_pathless_PYTHON" = none && break
|
||||||
|
- prog="import sys, string
|
||||||
|
-# split strings by '.' and convert to numeric. Append some zeros
|
||||||
|
-# because we need at least 4 digits for the hex conversion.
|
||||||
|
-minver = map(int, string.split('2.3.5', '.')) + [0, 0, 0]
|
||||||
|
-minverhex = 0
|
||||||
|
-for i in xrange(0, 4): minverhex = (minverhex << 8) + minver[i]
|
||||||
|
-sys.exit(sys.hexversion < minverhex)"
|
||||||
|
- if { echo "$as_me:$LINENO: $am_cv_pathless_PYTHON -c "$prog"" >&5
|
||||||
|
- ($am_cv_pathless_PYTHON -c "$prog") >&5 2>&5
|
||||||
|
- ac_status=$?
|
||||||
|
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
- (exit $ac_status); }; then :
|
||||||
|
- break
|
||||||
|
-fi
|
||||||
|
- done
|
||||||
|
-fi
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_pathless_PYTHON" >&5
|
||||||
|
-$as_echo "$am_cv_pathless_PYTHON" >&6; }
|
||||||
|
- # Set $PYTHON to the absolute path of $am_cv_pathless_PYTHON.
|
||||||
|
- if test "$am_cv_pathless_PYTHON" = none; then
|
||||||
|
- PYTHON=:
|
||||||
|
- else
|
||||||
|
- # Extract the first word of "$am_cv_pathless_PYTHON", so it can be a program name with args.
|
||||||
|
-set dummy $am_cv_pathless_PYTHON; ac_word=$2
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
|
||||||
|
-$as_echo_n "checking for $ac_word... " >&6; }
|
||||||
|
-if ${ac_cv_path_PYTHON+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- case $PYTHON in
|
||||||
|
- [\\/]* | ?:[\\/]*)
|
||||||
|
- ac_cv_path_PYTHON="$PYTHON" # Let the user override the test with a path.
|
||||||
|
- ;;
|
||||||
|
- *)
|
||||||
|
- as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
|
||||||
|
-for as_dir in $PATH
|
||||||
|
-do
|
||||||
|
- IFS=$as_save_IFS
|
||||||
|
- test -z "$as_dir" && as_dir=.
|
||||||
|
- for ac_exec_ext in '' $ac_executable_extensions; do
|
||||||
|
- if as_fn_executable_p "$as_dir/$ac_word$ac_exec_ext"; then
|
||||||
|
- ac_cv_path_PYTHON="$as_dir/$ac_word$ac_exec_ext"
|
||||||
|
- $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
|
||||||
|
- break 2
|
||||||
|
- fi
|
||||||
|
-done
|
||||||
|
- done
|
||||||
|
-IFS=$as_save_IFS
|
||||||
|
-
|
||||||
|
- ;;
|
||||||
|
-esac
|
||||||
|
-fi
|
||||||
|
-PYTHON=$ac_cv_path_PYTHON
|
||||||
|
-if test -n "$PYTHON"; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYTHON" >&5
|
||||||
|
-$as_echo "$PYTHON" >&6; }
|
||||||
|
-else
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
-$as_echo "no" >&6; }
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- fi
|
||||||
|
- am_display_PYTHON=$am_cv_pathless_PYTHON
|
||||||
|
- fi
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- if test "$PYTHON" = :; then
|
||||||
|
- as_fn_error $? "no suitable Python interpreter found" "$LINENO" 5
|
||||||
|
- else
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON version" >&5
|
||||||
|
-$as_echo_n "checking for $am_display_PYTHON version... " >&6; }
|
||||||
|
-if ${am_cv_python_version+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- am_cv_python_version=`$PYTHON -c "import sys; print sys.version[:3]"`
|
||||||
|
-fi
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_version" >&5
|
||||||
|
-$as_echo "$am_cv_python_version" >&6; }
|
||||||
|
- PYTHON_VERSION=$am_cv_python_version
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- PYTHON_PREFIX='${prefix}'
|
||||||
|
-
|
||||||
|
- PYTHON_EXEC_PREFIX='${exec_prefix}'
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON platform" >&5
|
||||||
|
-$as_echo_n "checking for $am_display_PYTHON platform... " >&6; }
|
||||||
|
-if ${am_cv_python_platform+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- am_cv_python_platform=`$PYTHON -c "import sys; print sys.platform"`
|
||||||
|
-fi
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_platform" >&5
|
||||||
|
-$as_echo "$am_cv_python_platform" >&6; }
|
||||||
|
- PYTHON_PLATFORM=$am_cv_python_platform
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON script directory" >&5
|
||||||
|
-$as_echo_n "checking for $am_display_PYTHON script directory... " >&6; }
|
||||||
|
-if ${am_cv_python_pythondir+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- am_cv_python_pythondir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(0,0,prefix='$PYTHON_PREFIX')" 2>/dev/null ||
|
||||||
|
- echo "$PYTHON_PREFIX/lib/python$PYTHON_VERSION/site-packages"`
|
||||||
|
-fi
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pythondir" >&5
|
||||||
|
-$as_echo "$am_cv_python_pythondir" >&6; }
|
||||||
|
- pythondir=$am_cv_python_pythondir
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- pkgpythondir=\${pythondir}/$PACKAGE
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $am_display_PYTHON extension module directory" >&5
|
||||||
|
-$as_echo_n "checking for $am_display_PYTHON extension module directory... " >&6; }
|
||||||
|
-if ${am_cv_python_pyexecdir+:} false; then :
|
||||||
|
- $as_echo_n "(cached) " >&6
|
||||||
|
-else
|
||||||
|
- am_cv_python_pyexecdir=`$PYTHON -c "from distutils import sysconfig; print sysconfig.get_python_lib(1,0,prefix='$PYTHON_EXEC_PREFIX')" 2>/dev/null ||
|
||||||
|
- echo "${PYTHON_EXEC_PREFIX}/lib/python${PYTHON_VERSION}/site-packages"`
|
||||||
|
-fi
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_python_pyexecdir" >&5
|
||||||
|
-$as_echo "$am_cv_python_pyexecdir" >&6; }
|
||||||
|
- pyexecdir=$am_cv_python_pyexecdir
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- pkgpyexecdir=\${pyexecdir}/$PACKAGE
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
- fi
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for headers required to compile python extensions" >&5
|
||||||
|
-$as_echo_n "checking for headers required to compile python extensions... " >&6; }
|
||||||
|
-py_prefix=`$PYTHON -c "import sys; print sys.prefix"`
|
||||||
|
-py_exec_prefix=`$PYTHON -c "import sys; print sys.exec_prefix"`
|
||||||
|
-PYTHON_INCLUDES="-I${py_prefix}/include/python${PYTHON_VERSION}"
|
||||||
|
-if test "$py_prefix" != "$py_exec_prefix"; then
|
||||||
|
- PYTHON_INCLUDES="$PYTHON_INCLUDES -I${py_exec_prefix}/include/python${PYTHON_VERSION}"
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-save_CPPFLAGS="$CPPFLAGS"
|
||||||
|
-CPPFLAGS="$CPPFLAGS $PYTHON_INCLUDES"
|
||||||
|
-cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
||||||
|
-/* end confdefs.h. */
|
||||||
|
-#include <Python.h>
|
||||||
|
-_ACEOF
|
||||||
|
-if ac_fn_c_try_cpp "$LINENO"; then :
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: found" >&5
|
||||||
|
-$as_echo "found" >&6; }
|
||||||
|
-
|
||||||
|
-else
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: not found" >&5
|
||||||
|
-$as_echo "not found" >&6; }
|
||||||
|
-as_fn_error $? "could not find Python headers" "$LINENO" 5
|
||||||
|
-fi
|
||||||
|
-rm -f conftest.err conftest.i conftest.$ac_ext
|
||||||
|
-CPPFLAGS="$save_CPPFLAGS"
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-pkg_failed=no
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for APPINDICATOR_PYTHON" >&5
|
||||||
|
-$as_echo_n "checking for APPINDICATOR_PYTHON... " >&6; }
|
||||||
|
-
|
||||||
|
-if test -n "$APPINDICATOR_PYTHON_CFLAGS"; then
|
||||||
|
- pkg_cv_APPINDICATOR_PYTHON_CFLAGS="$APPINDICATOR_PYTHON_CFLAGS"
|
||||||
|
- elif test -n "$PKG_CONFIG"; then
|
||||||
|
- if test -n "$PKG_CONFIG" && \
|
||||||
|
- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"
|
||||||
|
- pygtk-2.0 >= \$PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= \$GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= \$PYGOBJECT_REQUIRED
|
||||||
|
- \""; } >&5
|
||||||
|
- ($PKG_CONFIG --exists --print-errors "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- ") 2>&5
|
||||||
|
- ac_status=$?
|
||||||
|
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||||
|
- test $ac_status = 0; }; then
|
||||||
|
- pkg_cv_APPINDICATOR_PYTHON_CFLAGS=`$PKG_CONFIG --cflags "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- " 2>/dev/null`
|
||||||
|
- test "x$?" != "x0" && pkg_failed=yes
|
||||||
|
-else
|
||||||
|
- pkg_failed=yes
|
||||||
|
-fi
|
||||||
|
- else
|
||||||
|
- pkg_failed=untried
|
||||||
|
-fi
|
||||||
|
-if test -n "$APPINDICATOR_PYTHON_LIBS"; then
|
||||||
|
- pkg_cv_APPINDICATOR_PYTHON_LIBS="$APPINDICATOR_PYTHON_LIBS"
|
||||||
|
- elif test -n "$PKG_CONFIG"; then
|
||||||
|
- if test -n "$PKG_CONFIG" && \
|
||||||
|
- { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"
|
||||||
|
- pygtk-2.0 >= \$PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= \$GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= \$PYGOBJECT_REQUIRED
|
||||||
|
- \""; } >&5
|
||||||
|
- ($PKG_CONFIG --exists --print-errors "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- ") 2>&5
|
||||||
|
- ac_status=$?
|
||||||
|
- $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
|
||||||
|
- test $ac_status = 0; }; then
|
||||||
|
- pkg_cv_APPINDICATOR_PYTHON_LIBS=`$PKG_CONFIG --libs "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- " 2>/dev/null`
|
||||||
|
- test "x$?" != "x0" && pkg_failed=yes
|
||||||
|
-else
|
||||||
|
- pkg_failed=yes
|
||||||
|
-fi
|
||||||
|
- else
|
||||||
|
- pkg_failed=untried
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-
|
||||||
|
-if test $pkg_failed = yes; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
-$as_echo "no" >&6; }
|
||||||
|
-
|
||||||
|
-if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
|
||||||
|
- _pkg_short_errors_supported=yes
|
||||||
|
-else
|
||||||
|
- _pkg_short_errors_supported=no
|
||||||
|
-fi
|
||||||
|
- if test $_pkg_short_errors_supported = yes; then
|
||||||
|
- APPINDICATOR_PYTHON_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- " 2>&1`
|
||||||
|
- else
|
||||||
|
- APPINDICATOR_PYTHON_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- " 2>&1`
|
||||||
|
- fi
|
||||||
|
- # Put the nasty error message in config.log where it belongs
|
||||||
|
- echo "$APPINDICATOR_PYTHON_PKG_ERRORS" >&5
|
||||||
|
-
|
||||||
|
- as_fn_error $? "Package requirements (
|
||||||
|
- pygtk-2.0 >= $PYGTK_REQUIRED
|
||||||
|
- gtk+-2.0 >= $GTK_REQUIRED_VERSION
|
||||||
|
- pygobject-2.0 >= $PYGOBJECT_REQUIRED
|
||||||
|
- ) were not met:
|
||||||
|
-
|
||||||
|
-$APPINDICATOR_PYTHON_PKG_ERRORS
|
||||||
|
-
|
||||||
|
-Consider adjusting the PKG_CONFIG_PATH environment variable if you
|
||||||
|
-installed software in a non-standard prefix.
|
||||||
|
-
|
||||||
|
-Alternatively, you may set the environment variables APPINDICATOR_PYTHON_CFLAGS
|
||||||
|
-and APPINDICATOR_PYTHON_LIBS to avoid the need to call pkg-config.
|
||||||
|
-See the pkg-config man page for more details." "$LINENO" 5
|
||||||
|
-elif test $pkg_failed = untried; then
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
|
||||||
|
-$as_echo "no" >&6; }
|
||||||
|
- { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
||||||
|
-$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
||||||
|
-as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it
|
||||||
|
-is in your PATH or set the PKG_CONFIG environment variable to the full
|
||||||
|
-path to pkg-config.
|
||||||
|
-
|
||||||
|
-Alternatively, you may set the environment variables APPINDICATOR_PYTHON_CFLAGS
|
||||||
|
-and APPINDICATOR_PYTHON_LIBS to avoid the need to call pkg-config.
|
||||||
|
-See the pkg-config man page for more details.
|
||||||
|
-
|
||||||
|
-To get pkg-config, see <http://pkg-config.freedesktop.org/>.
|
||||||
|
-See \`config.log' for more details" "$LINENO" 5; }
|
||||||
|
-else
|
||||||
|
- APPINDICATOR_PYTHON_CFLAGS=$pkg_cv_APPINDICATOR_PYTHON_CFLAGS
|
||||||
|
- APPINDICATOR_PYTHON_LIBS=$pkg_cv_APPINDICATOR_PYTHON_LIBS
|
||||||
|
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
|
||||||
|
-$as_echo "yes" >&6; }
|
||||||
|
-
|
||||||
|
-fi
|
||||||
|
-
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pygtk defs" >&5
|
||||||
|
-$as_echo_n "checking for pygtk defs... " >&6; }
|
||||||
|
-PYGTK_DEFSDIR=`$PKG_CONFIG --variable=defsdir pygtk-2.0`
|
||||||
|
-
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYGTK_DEFSDIR" >&5
|
||||||
|
-$as_echo "$PYGTK_DEFSDIR" >&6; }
|
||||||
|
-
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for pygtk codegen" >&5
|
||||||
|
-$as_echo_n "checking for pygtk codegen... " >&6; }
|
||||||
|
-PYGTK_CODEGEN="$PYTHON `$PKG_CONFIG --variable=codegendir pygtk-2.0`/codegen.py"
|
||||||
|
-
|
||||||
|
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $PYGTK_CODEGEN" >&5
|
||||||
|
-$as_echo "$PYGTK_CODEGEN" >&6; }
|
||||||
|
-
|
||||||
|
#########################
|
||||||
|
# Check if build tests
|
||||||
|
#########################
|
||||||
|
@@ -14358,7 +13999,7 @@ fi
|
||||||
|
# Files
|
||||||
|
###########################
|
||||||
|
|
||||||
|
-ac_config_files="$ac_config_files Makefile src/Makefile src/appindicator-0.1.pc src/appindicator3-0.1.pc bindings/Makefile bindings/python/Makefile bindings/python/appindicator.override bindings/vala/Makefile bindings/vala/examples/Makefile tests/Makefile example/Makefile docs/Makefile docs/reference/Makefile docs/reference/version.xml docs/reference/libappindicator-docs.sgml"
|
||||||
|
+ac_config_files="$ac_config_files Makefile src/Makefile src/appindicator-0.1.pc src/appindicator3-0.1.pc bindings/Makefile bindings/vala/Makefile bindings/vala/examples/Makefile tests/Makefile example/Makefile docs/Makefile docs/reference/Makefile docs/reference/version.xml docs/reference/libappindicator-docs.sgml"
|
||||||
|
|
||||||
|
|
||||||
|
if test "x$has_mono" = "xtrue" ; then
|
||||||
|
@@ -15437,8 +15078,6 @@ do
|
||||||
|
"src/appindicator-0.1.pc") CONFIG_FILES="$CONFIG_FILES src/appindicator-0.1.pc" ;;
|
||||||
|
"src/appindicator3-0.1.pc") CONFIG_FILES="$CONFIG_FILES src/appindicator3-0.1.pc" ;;
|
||||||
|
"bindings/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/Makefile" ;;
|
||||||
|
- "bindings/python/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/python/Makefile" ;;
|
||||||
|
- "bindings/python/appindicator.override") CONFIG_FILES="$CONFIG_FILES bindings/python/appindicator.override" ;;
|
||||||
|
"bindings/vala/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/vala/Makefile" ;;
|
||||||
|
"bindings/vala/examples/Makefile") CONFIG_FILES="$CONFIG_FILES bindings/vala/examples/Makefile" ;;
|
||||||
|
"tests/Makefile") CONFIG_FILES="$CONFIG_FILES tests/Makefile" ;;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue