summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Raghavan <ford_prefect@gentoo.org>2008-07-27 18:05:34 +0000
committerArun Raghavan <ford_prefect@gentoo.org>2008-07-27 18:05:34 +0000
commit5b75d12503cda4359ae9d90bb1acedb2912066d2 (patch)
treea8773af344bff577842e261c0047ace2be4050a9 /gnome-extra/quick-lounge-applet
parentAdd --without-mpicc because auto-deps are bad and some MPI implementation pro... (diff)
downloadgentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.tar.gz
gentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.tar.bz2
gentoo-2-5b75d12503cda4359ae9d90bb1acedb2912066d2.zip
Bump to 2.12.5. Primarily bug fixes. Also pull in an upstream patch to fix configure.in cruft.
(Portage version: 2.2_rc3/cvs/Linux 2.6.26 i686)
Diffstat (limited to 'gnome-extra/quick-lounge-applet')
-rw-r--r--gnome-extra/quick-lounge-applet/ChangeLog10
-rw-r--r--gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch50
-rw-r--r--gnome-extra/quick-lounge-applet/quick-lounge-applet-2.12.5.ebuild39
3 files changed, 98 insertions, 1 deletions
diff --git a/gnome-extra/quick-lounge-applet/ChangeLog b/gnome-extra/quick-lounge-applet/ChangeLog
index b88355060687..471654f81cd2 100644
--- a/gnome-extra/quick-lounge-applet/ChangeLog
+++ b/gnome-extra/quick-lounge-applet/ChangeLog
@@ -1,6 +1,14 @@
# ChangeLog for gnome-extra/quick-lounge-applet
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/quick-lounge-applet/ChangeLog,v 1.26 2008/02/02 00:12:00 leio Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/quick-lounge-applet/ChangeLog,v 1.27 2008/07/27 18:05:34 ford_prefect Exp $
+
+*quick-lounge-applet-2.12.5 (27 Jul 2008)
+
+ 27 Jul 2008; Arun Raghavan <ford_prefect@gentoo.org>
+ +files/quick-lounge-applet-2.12.5-configure-fixes.patch,
+ +quick-lounge-applet-2.12.5.ebuild:
+ Bump to 2.12.5. Primarily bug fixes. Also pull in an upstream patch to fix
+ configure.in cruft.
02 Feb 2008; Mart Raudsepp <leio@gentoo.org>
-quick-lounge-applet-2.1.1.ebuild, -quick-lounge-applet-2.2.0.ebuild,
diff --git a/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch b/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch
new file mode 100644
index 000000000000..57cc2d41e130
--- /dev/null
+++ b/gnome-extra/quick-lounge-applet/files/quick-lounge-applet-2.12.5-configure-fixes.patch
@@ -0,0 +1,50 @@
+diff -urNp quick-lounge-applet-2.12.5-orig/configure.in quick-lounge-applet-2.12.5/configure.in
+--- quick-lounge-applet-2.12.5-orig/configure.in 2008-07-27 22:08:29.000000000 +0530
++++ quick-lounge-applet-2.12.5/configure.in 2008-07-27 22:09:44.000000000 +0530
+@@ -7,7 +7,7 @@ AC_CONFIG_SRCDIR(src/quick-lounge.c)
+ AM_INIT_AUTOMAKE([1.9 foreign no-dist-gzip dist-bzip2])
+ AC_CONFIG_HEADERS([config.h])
+
+-LT_PROG_LIBTOOL
++AM_PROG_LIBTOOL
+
+ dnl ==========================================================================
+ dnl
+@@ -53,37 +53,6 @@ PKG_CHECK_MODULES(QL, \
+ AC_SUBST(QL_CFLAGS)
+ AC_SUBST(QL_LIBS)
+
+-#
+-# If Pango included the shared library dependencies from X11 in
+-# the pkg-config output, then we use that (to avoid duplicates).
+-# but if they were omitted to avoid binary compatibility problems
+-# then we need to repeat the checks.
+-#
+-if $PKG_CONFIG --exists pangoxft ; then
+- PANGO_PACKAGES="pangox pangoxft"
+-else
+- PANGO_PACKAGES="pangox"
+-fi
+-
+-x_libs="`$PKG_CONFIG --libs $PANGO_PACKAGES`"
+-case x_libs in
+- *-lX11*) pango_omitted_x_deps=no ;;
+- *) pango_omitted_x_deps=yes ;;
+-esac
+-
+-if test $pango_omitted_x_deps = yes ; then
+- AC_PATH_XTRA
+-
+- if test x$no_x = xyes ; then
+- AC_MSG_ERROR([X development libraries not found])
+- else
+- X_LIBS="$X_PRE_LIBS $X_LIBS -lX11 $X_EXTRA_LIBS"
+- fi
+-fi
+-
+-AC_CHECK_LIB(Xau, XauFileName, [X_LIBS="$X_LIBS -lXau"])
+-
+-AC_SUBST(X_LIBS)
+
+ dnl ******************************
+
diff --git a/gnome-extra/quick-lounge-applet/quick-lounge-applet-2.12.5.ebuild b/gnome-extra/quick-lounge-applet/quick-lounge-applet-2.12.5.ebuild
new file mode 100644
index 000000000000..6b0a40321878
--- /dev/null
+++ b/gnome-extra/quick-lounge-applet/quick-lounge-applet-2.12.5.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2008 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/quick-lounge-applet/quick-lounge-applet-2.12.5.ebuild,v 1.1 2008/07/27 18:05:34 ford_prefect Exp $
+
+inherit autotools gnome2
+
+DESCRIPTION="Application launcher applet for GNOME"
+HOMEPAGE="http://quick-lounge.sourceforge.net/"
+LICENSE="GPL-2"
+
+IUSE=""
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+RDEPEND=">=dev-libs/glib-2.2
+ >=x11-libs/gtk+-2.2
+ >=gnome-base/gconf-2.0
+ >=gnome-base/libgnome-2.4
+ >=gnome-base/libgnomeui-2.4
+ >=gnome-base/gnome-desktop-2.4
+ >=gnome-base/gnome-vfs-2.4
+ >=gnome-base/libglade-2.4
+ >=gnome-base/gnome-panel-2.4
+ >=gnome-base/gnome-menus-2.12
+ sys-devel/gettext"
+
+DEPEND="${RDEPEND}
+ app-text/scrollkeeper
+ dev-util/pkgconfig
+ >=dev-util/intltool-0.35.0"
+
+DOCS="AUTHORS ChangeLog INSTALL NEWS README"
+
+src_unpack() {
+ gnome2_src_unpack
+ # some fixes to configure.in from upstream
+ epatch "${FILESDIR}/${P}-configure-fixes.patch"
+ eautoreconf
+}