diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-04-07 14:28:04 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-04-07 14:28:04 +0000 |
commit | e59d4f76aff16ce8b9a9b8b9ed17a425d45c0e4b (patch) | |
tree | 18ac7994ddbb7735101f20481e8051b7f6860f82 /app-misc | |
parent | Version bump (diff) | |
download | gentoo-2-e59d4f76aff16ce8b9a9b8b9ed17a425d45c0e4b.tar.gz gentoo-2-e59d4f76aff16ce8b9a9b8b9ed17a425d45c0e4b.tar.bz2 gentoo-2-e59d4f76aff16ce8b9a9b8b9ed17a425d45c0e4b.zip |
Version bump
(Portage version: 2.1.11.60/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/workrave/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/workrave/workrave-1.10.ebuild | 68 |
2 files changed, 74 insertions, 1 deletions
diff --git a/app-misc/workrave/ChangeLog b/app-misc/workrave/ChangeLog index 09bbbdb18b71..36019332c76b 100644 --- a/app-misc/workrave/ChangeLog +++ b/app-misc/workrave/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/workrave # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/ChangeLog,v 1.87 2013/01/24 03:39:45 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/ChangeLog,v 1.88 2013/04/07 14:28:04 pacho Exp $ + +*workrave-1.10 (07 Apr 2013) + + 07 Apr 2013; Pacho Ramos <pacho@gentoo.org> +workrave-1.10.ebuild: + Version bump 24 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org> workrave-1.9.4-r1.ebuild: diff --git a/app-misc/workrave/workrave-1.10.ebuild b/app-misc/workrave/workrave-1.10.ebuild new file mode 100644 index 000000000000..873ad50bab50 --- /dev/null +++ b/app-misc/workrave/workrave-1.10.ebuild @@ -0,0 +1,68 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/workrave/workrave-1.10.ebuild,v 1.1 2013/04/07 14:28:04 pacho Exp $ + +EAPI=5 +GCONF_DEBUG="yes" +PYTHON_COMPAT=( python2_{6,7} ) + +inherit gnome2 python-single-r1 + +DESCRIPTION="Helpful utility to attack Repetitive Strain Injury (RSI)" +HOMEPAGE="http://www.workrave.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3+" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dbus doc distribution gstreamer nls pulseaudio test" + +RDEPEND=">=dev-libs/glib-2.28.0:2 + >=x11-libs/gtk+-3.0:3 + >=dev-cpp/gtkmm-3.0.0:3.0 + >=dev-cpp/glibmm-2.28.0:2 + >=dev-libs/libsigc++-2.2.4.2:2 + >=gnome-base/gnome-shell-3.6.2 + dbus? ( + >=sys-apps/dbus-1.2 + dev-libs/dbus-glib ) + distribution? ( >=net-libs/gnet-2 ) + gstreamer? ( + >=media-libs/gstreamer-0.10:0.10 + >=media-libs/gst-plugins-base-0.10:0.10 ) + pulseaudio? ( >=media-sound/pulseaudio-0.9.15 ) + x11-libs/libSM + x11-libs/libX11 + x11-libs/libXtst + x11-libs/libXt + x11-libs/libXmu" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40.0 + x11-proto/xproto + x11-proto/inputproto + x11-proto/recordproto + dev-python/cheetah + virtual/pkgconfig + doc? ( + app-text/docbook-sgml-utils + app-text/xmlto ) + nls? ( >=sys-devel/gettext-0.17 )" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_configure() { + gnome2_src_configure \ + --disable-experimental \ + --disable-static \ + --disable-xml \ + $(use_enable dbus) \ + $(use_enable doc manual) \ + $(use_enable distribution) \ + $(use_enable gstreamer) \ + $(use_enable nls) \ + $(use_enable pulseaudio pulse) \ + $(use_enable test tests) +} |