forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Package-Manager: portage-2.3.0_rc1
- Loading branch information
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST meld-3.14.2.tar.xz 505488 SHA256 4a3c0951cd3b7e7ae2480f66adfb0e50b3bd301821d6e2adb518130446231873 SHA512 a74b07db0e3ce4186d2ef4d2156ed1ad1a0cd39d953e999d75d457345d1a294fe0832049531b78fc8e75a038b07991fbfbcdf745d74e5b2802199a35007333b1 WHIRLPOOL 69823c4bc555e12f3b80c8f35f61fe44a22e246c2093e0535d69fadbcf5a55bf2e6ddc611ae2d5368173e4620d373cd26c85571d0e5648ebf82216ffcae6adf7 | ||
DIST meld-3.16.0.tar.xz 532000 SHA256 341bfd53ac7c0167d6d43694c0e7dbedf76463bdf79b425c439376ba15b56c0a SHA512 12425fbdcafcd305bebbf368292c0481fd17b2e75f73c9788d9e017ab22b6ef986f3b4ec2fb44063141b6a6072975397402f7a59ed27666a788c73e4861dd720 WHIRLPOOL d29c3dbccd762b75b5c251aff8da596e22a8818d7bddac913b7b930b8e6cf23c731cef6beb7f1181b8344daf9a2c25c0fbc59cda561c254a4784eb68140d7b13 | ||
DIST meld-3.16.1.tar.xz 532252 SHA256 1bec697aa1ababa315ca8241ade65dc68ea87f0d316632f590975afcf967cfab SHA512 933fb2e0fa509039bc0998c2f4b2b91720c43c9b6c11f9995aed1525103ab556e10fe48938fbe68bdc1d715df750115c4ee9a0b7af4c79c191ec25456a12b59b WHIRLPOOL b4dccb3d0b2029616b1b04485c4b8bf78c570c10a49d3b64016666a354960d757474bac2e767a60875678de5362552b03456dbceff038951bf3897530e5d4990 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="6" | ||
PYTHON_REQ_USE="xml" | ||
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.36:2[dbus] | ||
dev-python/dbus-python[${PYTHON_USEDEP}] | ||
>=dev-python/pygobject-3.8:3[cairo,${PYTHON_USEDEP}] | ||
gnome-base/gsettings-desktop-schemas | ||
>=x11-libs/gtk+-3.14:3[introspection] | ||
>=x11-libs/gtksourceview-3.14:3.0[introspection] | ||
x11-themes/hicolor-icon-theme | ||
" | ||
DEPEND="${RDEPEND} | ||
dev-util/intltool | ||
dev-util/itstool | ||
sys-devel/gettext | ||
" | ||
|
||
python_compile_all() { | ||
mydistutilsargs=( --no-update-icon-cache --no-compile-schemas ) | ||
} |