diff options
author | Pacho Ramos <pacho@gentoo.org> | 2015-07-04 19:39:52 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2015-07-04 19:39:52 +0000 |
commit | 310af0e4fcd296978ab8b816b4c59c3724eb5a80 (patch) | |
tree | 2b14158dcfa0d402451ceb93137ec331bb379187 /gnome-extra/nemo | |
parent | Remove < 1.15.0-r1 for bug #505320. (diff) | |
download | gentoo-2-310af0e4fcd296978ab8b816b4c59c3724eb5a80.tar.gz gentoo-2-310af0e4fcd296978ab8b816b4c59c3724eb5a80.tar.bz2 gentoo-2-310af0e4fcd296978ab8b816b4c59c3724eb5a80.zip |
Version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'gnome-extra/nemo')
-rw-r--r-- | gnome-extra/nemo/ChangeLog | 7 | ||||
-rw-r--r-- | gnome-extra/nemo/nemo-2.6.6.ebuild | 89 |
2 files changed, 95 insertions, 1 deletions
diff --git a/gnome-extra/nemo/ChangeLog b/gnome-extra/nemo/ChangeLog index b8a9798c95ae..26283d58efb1 100644 --- a/gnome-extra/nemo/ChangeLog +++ b/gnome-extra/nemo/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for gnome-extra/nemo # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nemo/ChangeLog,v 1.26 2015/06/14 01:58:28 tetromino Exp $ +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nemo/ChangeLog,v 1.27 2015/07/04 19:39:52 pacho Exp $ + +*nemo-2.6.6 (04 Jul 2015) + + 04 Jul 2015; Pacho Ramos <pacho@gentoo.org> +nemo-2.6.6.ebuild: + Version bump *nemo-2.6.5 (13 Jun 2015) diff --git a/gnome-extra/nemo/nemo-2.6.6.ebuild b/gnome-extra/nemo/nemo-2.6.6.ebuild new file mode 100644 index 000000000000..50a7aa8224fe --- /dev/null +++ b/gnome-extra/nemo/nemo-2.6.6.ebuild @@ -0,0 +1,89 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/gnome-extra/nemo/nemo-2.6.6.ebuild,v 1.1 2015/07/04 19:39:52 pacho Exp $ + +EAPI="5" +GCONF_DEBUG="no" +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.34:2[dbus] + >=gnome-extra/cinnamon-desktop-2.6.1:0= + >=x11-libs/pango-1.28.3 + >=x11-libs/gtk+-3.3.17: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.1.0:= ) +" +RDEPEND="${COMMON_DEPEND} + x11-themes/gnome-icon-theme-symbolic + nls? ( >=gnome-extra/cinnamon-translations-2.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!) +PDEPEND=">=gnome-base/gvfs-0.1.2" + +src_prepare() { + epatch_user + eautoreconf + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --disable-update-mimedb \ + --disable-more-warnings \ + $(use_enable exif libexif) \ + $(use_enable introspection) \ + $(use_enable tracker) \ + $(use_enable xmp) +} + +src_test() { + # FIXME: this should be handled at eclass level + "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/libnemo-private" || die + + gnome2_environment_reset + unset DBUS_SESSION_BUS_ADDRESS + cd src # we don't care about translation tests + GSETTINGS_SCHEMA_DIR="${S}/libnemo-private" GSETTINGS_BACKEND="memory" Xemake check +} |