diff options
author | Pacho Ramos <pacho@gentoo.org> | 2014-10-04 08:30:48 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2014-10-04 08:30:48 +0000 |
commit | 92bad1375fcd58428ea6d9b175dfc5b7c5e2e5b0 (patch) | |
tree | 63f70bcf3e0c0d0038852e049bd2a86b8ca9c363 /dev-util | |
parent | Version bump, pax-mark some more files (#522808 by Alexander Tsoy) (diff) | |
download | gentoo-2-92bad1375fcd58428ea6d9b175dfc5b7c5e2e5b0.tar.gz gentoo-2-92bad1375fcd58428ea6d9b175dfc5b7c5e2e5b0.tar.bz2 gentoo-2-92bad1375fcd58428ea6d9b175dfc5b7c5e2e5b0.zip |
Version bump (thanks to poncho for his help with ebuild)
(Portage version: 2.2.12/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/meld/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/meld/meld-3.12.0.ebuild | 43 |
2 files changed, 49 insertions, 1 deletions
diff --git a/dev-util/meld/ChangeLog b/dev-util/meld/ChangeLog index 1e303c7d28aa..b00e649387e5 100644 --- a/dev-util/meld/ChangeLog +++ b/dev-util/meld/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-util/meld # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.184 2014/09/04 12:06:31 pacho Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/ChangeLog,v 1.185 2014/10/04 08:30:48 pacho Exp $ + +*meld-3.12.0 (04 Oct 2014) + + 04 Oct 2014; Pacho Ramos <pacho@gentoo.org> +meld-3.12.0.ebuild: + Version bump (thanks to poncho for his help with ebuild) *meld-1.8.6 (04 Sep 2014) diff --git a/dev-util/meld/meld-3.12.0.ebuild b/dev-util/meld/meld-3.12.0.ebuild new file mode 100644 index 000000000000..156a6ba9175b --- /dev/null +++ b/dev-util/meld/meld-3.12.0.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/meld/meld-3.12.0.ebuild,v 1.1 2014/10/04 08:30:48 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +PYTHON_COMPAT=( python2_7 ) +DISTUTILS_SINGLE_IMPL=1 + +inherit gnome2 distutils-r1 + +DESCRIPTION="A graphical diff and merge tool" +HOMEPAGE="http://meldmerge.org/" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux" +IUSE="" + +RDEPEND=" + ${PYTHON_DEPS} + >=dev-libs/glib-2.34.0:2[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pygobject[${PYTHON_USEDEP}] + gnome-base/gsettings-desktop-schemas + >=x11-libs/gtk+-3.6.0:3 + >=x11-libs/gtksourceview-3.6.0:3.0 + x11-themes/hicolor-icon-theme +" +DEPEND="${RDEPEND} + sys-devel/gettext + dev-util/intltool + dev-util/itstool +" + +PATCHES=( + # Build with C locale (from 'master') + "${FILESDIR}"/${P}-c-locale.patch +) + +python_compile_all() { + mydistutilsargs=( --no-update-icon-cache --no-compile-schemas ) +} |