diff options
author | Tom Wijsman <tomwij@gentoo.org> | 2014-05-09 11:54:56 +0000 |
---|---|---|
committer | Tom Wijsman <tomwij@gentoo.org> | 2014-05-09 11:54:56 +0000 |
commit | 7417d39b9d4e51f58a1d70f2c90253c6116ecf36 (patch) | |
tree | a164f16531458c1c0931dddb05500735fc8a5d0c /mate-base/caja | |
parent | Version bump to 1.8.1. (diff) | |
download | gentoo-2-7417d39b9d4e51f58a1d70f2c90253c6116ecf36.tar.gz gentoo-2-7417d39b9d4e51f58a1d70f2c90253c6116ecf36.tar.bz2 gentoo-2-7417d39b9d4e51f58a1d70f2c90253c6116ecf36.zip |
Version bump to 1.8.1.
(Portage version: HEAD/cvs/Linux x86_64, signed Manifest commit with key 6D34E57D)
Diffstat (limited to 'mate-base/caja')
-rw-r--r-- | mate-base/caja/ChangeLog | 7 | ||||
-rw-r--r-- | mate-base/caja/caja-1.8.1.ebuild | 98 |
2 files changed, 104 insertions, 1 deletions
diff --git a/mate-base/caja/ChangeLog b/mate-base/caja/ChangeLog index d01ca39d865c..d920ac3103f4 100644 --- a/mate-base/caja/ChangeLog +++ b/mate-base/caja/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for mate-base/caja # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.1 2014/04/10 12:23:00 tomwij Exp $ +# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/ChangeLog,v 1.2 2014/05/09 11:54:56 tomwij Exp $ + +*caja-1.8.1 (09 May 2014) + + 09 May 2014; Tom Wijsman <TomWij@gentoo.org> +caja-1.8.1.ebuild: + Version bump to 1.8.1. *caja-1.8.0 (10 Apr 2014) diff --git a/mate-base/caja/caja-1.8.1.ebuild b/mate-base/caja/caja-1.8.1.ebuild new file mode 100644 index 000000000000..1b621f03f930 --- /dev/null +++ b/mate-base/caja/caja-1.8.1.ebuild @@ -0,0 +1,98 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/mate-base/caja/caja-1.8.1.ebuild,v 1.1 2014/05/09 11:54:56 tomwij Exp $ + +EAPI="5" + +GCONF_DEBUG="yes" +GNOME2_LA_PUNT="yes" + +inherit eutils gnome2 versionator virtualx + +MATE_BRANCH="$(get_version_component_range 1-2)" + +SRC_URI="http://pub.mate-desktop.org/releases/${MATE_BRANCH}/${P}.tar.xz" +DESCRIPTION="Caja file manager for the MATE desktop" +HOMEPAGE="http://mate-desktop.org" + +LICENSE="GPL-2 LGPL-2 FDL-1.1" +SLOT="0" +KEYWORDS="~amd64" + +IUSE="X +mate +introspection +unique xmp" + +RDEPEND="dev-libs/atk:0 + >=dev-libs/glib-2.28:2 + >=dev-libs/libxml2-2.4.7:2 + || ( + >=gnome-base/gvfs-1.10.1:0[gdu] + >=gnome-base/gvfs-1.10.1:0[udisks] + ) + >=mate-base/mate-desktop-1.8:0 + >=media-libs/libexif-0.5.12:0 + >=x11-libs/gtk+-2.24:2[introspection?] + x11-libs/cairo:0 + x11-libs/gdk-pixbuf:2 + x11-libs/libICE:0 + x11-libs/libSM:0 + x11-libs/libX11:0 + x11-libs/libXext:0 + x11-libs/libXft:0 + x11-libs/libXrender:0 + >=x11-libs/pango-1.1.2:0 + virtual/libintl:0 + introspection? ( >=dev-libs/gobject-introspection-0.6.4:0 ) + unique? ( >=dev-libs/libunique-1:1 ) + xmp? ( >=media-libs/exempi-1.99.2:2 )" + +DEPEND="${RDEPEND} + !!mate-base/mate-file-manager + >=dev-lang/perl-5:0= + dev-util/gdbus-codegen:0 + >=dev-util/intltool-0.40.1:* + >=mate-base/mate-common-1.6:0 + sys-devel/gettext:* + virtual/pkgconfig:*" + +PDEPEND="mate? ( >=x11-themes/mate-icon-theme-1.6:0 )" + +# TODO: Test fails because Caja is not merged yet: +# GLib-GIO-ERROR **: Settings schema 'org.mate.caja.preferences' is not installed +RESTRICT="test" + +src_prepare() { + # Remove unnecessary CFLAGS. + sed -i -e 's:-DG.*DISABLE_DEPRECATED::g' \ + configure{,.ac} eel/Makefile.{am,in} || die + + gnome2_src_prepare +} + +src_configure() { + gnome2_src_configure \ + --enable-unique \ + --disable-packagekit \ + --disable-update-mimedb \ + --with-gtk=2.0 \ + $(use_enable introspection) \ + $(use_enable unique) \ + $(use_enable xmp) \ + $(use_with X x) +} + +DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README THANKS TODO" + +src_test() { + unset SESSION_MANAGER + unset DBUS_SESSION_BUS_ADDRESS + + Xemake check || die "Test phase failed" +} + +pkg_postinst() { + gnome2_pkg_postinst + + elog "Caja can use gstreamer to preview audio files. Just make sure" + elog "to have the necessary plugins available to play the media type you" + elog "want to preview." +} |