Codebase list empathy / 8a887b5
Re-enable map support Sjoerd Simons 12 years ago
6 changed file(s) with 36 addition(s) and 38 deletion(s). Raw diff Collapse all Expand all
11
22 * New upstream release (3.3.90)
33 * Sync from the Ubuntu package by Ken VanDine
4
5 -- Sjoerd Simons <sjoerd@debian.org> Sat, 10 Mar 2012 14:30:03 +0100
4 * debian/patches/use_champlain-0.12.patch:
5 - Added. Enabling using libchamplain-0.12
6 * Re-enable building with map support
7
8 -- Sjoerd Simons <sjoerd@debian.org> Sun, 11 Mar 2012 22:44:45 +0100
69
710 empathy (3.2.2-2) experimental; urgency=low
811
1010 Emilio Pozuelo Monfort <pochu@debian.org>
1111 Build-Depends: cdbs (>= 0.4.90),
1212 debhelper (>= 8),
13 dh-autoreconf,
1314 rarian-compat,
1415 librarian-dev,
1516 libglib2.0-dev (>= 2.28),
5152 libtelepathy-farstream-dev (>= 0.2.1),
5253 libclutter-gst-dev,
5354 libclutter-1.0-dev (>= 1.7.14),
54 libclutter-gtk-1.0-dev (>= 0.90.3)
55 libclutter-gtk-1.0-dev (>= 0.90.3),
56 libchamplain-gtk-0.12-dev
5557 Standards-Version: 3.9.2
5658 Vcs-Git: git://git.debian.org/git/pkg-telepathy/empathy.git
5759 Vcs-Browser: http://git.debian.org/?p=pkg-telepathy/empathy.git
+0
-32
debian/patches/99_ltmain_as-needed.patch less more
0 Index: libnotify-0.5.0/ltmain.sh
1 ===================================================================
2 --- libnotify-0.5.0.orig/ltmain.sh 2010-06-24 10:01:38.000000000 +0200
3 +++ libnotify-0.5.0/ltmain.sh 2010-06-29 07:27:27.202952725 +0200
4 @@ -4716,6 +4716,11 @@
5 arg=$func_stripname_result
6 ;;
7
8 + -Wl,--as-needed)
9 + deplibs="$deplibs $arg"
10 + continue
11 + ;;
12 +
13 -Wl,*)
14 func_stripname '-Wl,' '' "$arg"
15 args=$func_stripname_result
16 @@ -5067,6 +5072,15 @@
17 lib=
18 found=no
19 case $deplib in
20 + -Wl,--as-needed)
21 + if test "$linkmode,$pass" = "prog,link"; then
22 + compile_deplibs="$deplib $compile_deplibs"
23 + finalize_deplibs="$deplib $finalize_deplibs"
24 + else
25 + deplibs="$deplib $deplibs"
26 + fi
27 + continue
28 + ;;
29 -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads)
30 if test "$linkmode,$pass" = "prog,link"; then
31 compile_deplibs="$deplib $compile_deplibs"
0 99_ltmain_as-needed.patch
0 use_champlain-0.12.patch
0 diff --git a/configure.ac b/configure.ac
1 index 3a0c72d..4287601 100644
2 --- a/configure.ac
3 +++ b/configure.ac
4 @@ -293,9 +293,6 @@ fi
5 # -----------------------------------------------------------
6 IT_PROG_INTLTOOL([0.40.0])
7
8 -AM_GNU_GETTEXT_VERSION([0.17])
9 -AM_GNU_GETTEXT([external])
10 -
11 GETTEXT_PACKAGE=empathy
12 AC_SUBST(GETTEXT_PACKAGE)
13 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE",[Gettext package name])
14 @@ -432,8 +429,8 @@ if test "x$enable_map" != "xno"; then
15 PKG_CHECK_MODULES(LIBCHAMPLAIN,
16 [
17 clutter-gtk-1.0
18 - champlain-gtk-0.14
19 - champlain-0.14 >= $CHAMPLAIN_REQUIRED
20 + champlain-gtk-0.12
21 + champlain-0.12 >= $CHAMPLAIN_REQUIRED
22 ], have_libchamplain="yes", have_libchamplain="no")
23
24 if test "x$have_libchamplain" = "xyes"; then
00 #!/usr/bin/make -f
11
2 include /usr/share/cdbs/1/rules/autoreconf.mk
23 include /usr/share/cdbs/1/rules/debhelper.mk
34 include /usr/share/cdbs/1/class/gnome.mk
45
2122 --enable-nautilus-sendto=yes \
2223 --enable-empathy-av \
2324 --disable-schemas-compile \
24 # Waiting for build-depends
25 # --enable-map=yes \
25 --enable-map=yes \
2626 # --enable-goa=yes \
2727
2828 DEB_BUILD_ARCH_OS := $(shell dpkg-architecture -qDEB_BUILD_ARCH_OS)