summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-05-27 08:44:30 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-05-27 08:44:30 +0000
commitbc005e8529b91332df00fd57089b604322ace33d (patch)
tree1dd06bd056a1a8e411f96c661dc6dd8d216bfe43 /sci-geosciences
parentRevise solution to bug #410945 to only apply to GCC. (diff)
downloadgentoo-2-bc005e8529b91332df00fd57089b604322ace33d.tar.gz
gentoo-2-bc005e8529b91332df00fd57089b604322ace33d.tar.bz2
gentoo-2-bc005e8529b91332df00fd57089b604322ace33d.zip
Version bump to latest, gtk3 version.
(Portage version: 2.2.0_alpha108/cvs/Linux x86_64)
Diffstat (limited to 'sci-geosciences')
-rw-r--r--sci-geosciences/gtk-g-rays2/ChangeLog8
-rw-r--r--sci-geosciences/gtk-g-rays2/gtk-g-rays2-2.01.ebuild (renamed from sci-geosciences/gtk-g-rays2/gtk-g-rays2-1.23.ebuild)26
2 files changed, 27 insertions, 7 deletions
diff --git a/sci-geosciences/gtk-g-rays2/ChangeLog b/sci-geosciences/gtk-g-rays2/ChangeLog
index 407711a33908..8dccc7298f8d 100644
--- a/sci-geosciences/gtk-g-rays2/ChangeLog
+++ b/sci-geosciences/gtk-g-rays2/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for sci-geosciences/gtk-g-rays2
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gtk-g-rays2/ChangeLog,v 1.7 2012/05/04 07:14:06 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gtk-g-rays2/ChangeLog,v 1.8 2012/05/27 08:44:30 scarabeus Exp $
+
+*gtk-g-rays2-2.01 (27 May 2012)
+
+ 27 May 2012; Tomáš Chvátal <scarabeus@gentoo.org> +gtk-g-rays2-2.01.ebuild,
+ -gtk-g-rays2-1.23.ebuild:
+ Version bump to latest, gtk3 version.
04 May 2012; Jeff Horelick <jdhore@gentoo.org> gtk-g-rays2-1.23.ebuild:
dev-util/pkgconfig -> virtual/pkgconfig
diff --git a/sci-geosciences/gtk-g-rays2/gtk-g-rays2-1.23.ebuild b/sci-geosciences/gtk-g-rays2/gtk-g-rays2-2.01.ebuild
index 88a42eb2b80a..4ecbf4d6c538 100644
--- a/sci-geosciences/gtk-g-rays2/gtk-g-rays2-1.23.ebuild
+++ b/sci-geosciences/gtk-g-rays2/gtk-g-rays2-2.01.ebuild
@@ -1,12 +1,14 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gtk-g-rays2/gtk-g-rays2-1.23.ebuild,v 1.2 2012/05/04 07:14:06 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-geosciences/gtk-g-rays2/gtk-g-rays2-2.01.ebuild,v 1.1 2012/05/27 08:44:29 scarabeus Exp $
EAPI=4
+inherit autotools gnome2
+
DESCRIPTION="GUI for accessing the Wintec WBT 201 / G-Rays 2 GPS device"
HOMEPAGE="http://www.daria.co.uk/gps"
-SRC_URI="http://www.zen35309.zen.co.uk/gps/${P}.tar.bz2"
+SRC_URI="http://www.zen35309.zen.co.uk/gps/${P}.tar.xz"
LICENSE="GPL-2"
SLOT="0"
@@ -14,12 +16,24 @@ KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="
- gnome-base/libglade:2.0
- x11-libs/gtk+:2
- x11-libs/cairo"
+ dev-libs/glib:2
+ dev-libs/dbus-glib
+ sys-fs/udev[gudev]
+ x11-libs/cairo
+ x11-libs/gtk+:3
+ virtual/freedesktop-icon-theme
+"
DEPEND="${DEPEND}
virtual/pkgconfig
sys-devel/gettext
- doc? ( dev-libs/libxslt )"
+"
DOCS=( README AUTHORS ChangeLog docs/gtkGrays2.pdf )
+
+src_prepare() {
+ # werror is bad idea
+ sed -i -e 's:-Werror::g' configure.ac || die
+ # we run this ourselves
+ sed -i -e '/gtk-update-icon-cache/d' Makefile.am || die
+ eautoreconf
+}