gnome-extra/nemo: Version bump

Package-Manager: portage-2.3.0_rc1
This commit is contained in:
Pacho Ramos
2016-05-29 13:55:21 +02:00
parent b3a74e2174
commit 66a02e6c2b
2 changed files with 86 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST nemo-2.8.6.tar.gz 1410287 SHA256 c35d7bfc753935ec638a068ab6edb2b6ada75c67d73518500285d25f947a8970 SHA512 f5facfc53566fe098daf3d751f375985371a5719a686a36033bbf1f0ace5a1e79b09beead3be699e40c95db5aacd3c3c0d9888f49625ec37686ecd3ecc25c837 WHIRLPOOL 4f57153abff15f3a4c4766aaac1debdef1455896dfd13a93f0e4ba88f5169298c91f77fce481b89d5ff90ac8c2608dc84d75854b537b8b9e72882e8298562575
DIST nemo-2.8.7.tar.gz 1413445 SHA256 79ca0e28b43ebb701a6449424be1be4224e9014bf1bb3b722d77b23ecb3afab9 SHA512 5daf57f30c3eb9bfaf6eab80e71f84763bad1ca707ecc96194ae9ce5899d33b4fb1e0f784c237741ba06d80b2c6247d3d0d1a6146fb954c5d6a6e18583322f7c WHIRLPOOL d65e1eda923b107a89dca3ebb60a68fe5c71ee9f9aeec3ba6e4d1c52266be91724ff1ead1354fe6998e92f06faaa2a1e4554e28cf59ac2e0dc1e6375b2be8e20

View File

@@ -0,0 +1,85 @@
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=6
GNOME2_LA_PUNT="yes"
PYTHON_COMPAT=( python2_7 )
inherit autotools eutils gnome2 python-any-r1 virtualx
DESCRIPTION="A file manager for Cinnamon, forked from Nautilus"
HOMEPAGE="http://cinnamon.linuxmint.com/"
SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="exif +introspection +nls packagekit tracker xmp"
COMMON_DEPEND="
>=dev-libs/glib-2.37.3:2[dbus]
>=gnome-extra/cinnamon-desktop-2.6.1:0=
>=x11-libs/pango-1.28.3
>=x11-libs/gtk+-3.9.10:3[introspection?]
>=dev-libs/libxml2-2.7.8:2
gnome-base/dconf:0=
gnome-base/gsettings-desktop-schemas
>=x11-libs/libnotify-0.7:=
x11-libs/libX11
x11-libs/libXext
x11-libs/libXrender
exif? ( >=media-libs/libexif-0.6.20:= )
introspection? ( >=dev-libs/gobject-introspection-0.6.4:= )
tracker? ( >=app-misc/tracker-0.12:= )
xmp? ( >=media-libs/exempi-2.2.0:= )
"
RDEPEND="${COMMON_DEPEND}
x11-themes/adwaita-icon-theme
nls? ( >=gnome-extra/cinnamon-translations-2.2 )
"
PDEPEND=">=gnome-base/gvfs-0.1.2"
DEPEND="${COMMON_DEPEND}
${PYTHON_DEPS}
$(python_gen_any_dep '
dev-python/polib[${PYTHON_USEDEP}]
dev-python/pygobject:3[${PYTHON_USEDEP}]
')
>=dev-lang/perl-5
>=dev-util/gdbus-codegen-2.31.0
dev-util/gtk-doc-am
>=dev-util/intltool-0.40.1
sys-devel/gettext
virtual/pkgconfig
x11-proto/xproto
dev-util/gtk-doc
gnome-base/gnome-common
"
# For eautoreconf
# gnome-base/gnome-common, dev-util/gtk-doc (not only -am!)
src_prepare() {
eautoreconf
gnome2_src_prepare
}
src_configure() {
gnome2_src_configure \
--disable-more-warnings \
$(use_enable exif libexif) \
$(use_enable introspection) \
$(use_enable tracker) \
$(use_enable xmp)
}
src_test() {
"${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/libnemo-private" || die
cd src # we don't care about translation tests
GSETTINGS_SCHEMA_DIR="${S}/libnemo-private" Xemake check
}