diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2011-02-18 19:37:40 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2011-02-18 19:37:40 +0000 |
commit | 38cfa6693c8c0f7c9d71957efe048ec5828cf9a6 (patch) | |
tree | 072cf7e9ab95286ff15074bd50e466500920d81f /media-gfx | |
parent | remove uwsgi from package.mask (diff) | |
download | gentoo-2-38cfa6693c8c0f7c9d71957efe048ec5828cf9a6.tar.gz gentoo-2-38cfa6693c8c0f7c9d71957efe048ec5828cf9a6.tar.bz2 gentoo-2-38cfa6693c8c0f7c9d71957efe048ec5828cf9a6.zip |
version bump
(Portage version: 2.2.0_alpha19/cvs/Linux x86_64)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/shotwell/ChangeLog | 9 | ||||
-rw-r--r-- | media-gfx/shotwell/shotwell-0.8.1.ebuild | 59 |
2 files changed, 66 insertions, 2 deletions
diff --git a/media-gfx/shotwell/ChangeLog b/media-gfx/shotwell/ChangeLog index 4361e2ebc428..ca66b18d9efd 100644 --- a/media-gfx/shotwell/ChangeLog +++ b/media-gfx/shotwell/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/shotwell -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.7 2010/09/23 21:52:44 eva Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.8 2011/02/18 19:37:40 hollow Exp $ + +*shotwell-0.8.1 (18 Feb 2011) + + 18 Feb 2011; Benedikt Böhm <hollow@gentoo.org> +shotwell-0.8.1.ebuild: + version bump 23 Sep 2010; Gilles Dartiguelongue <eva@gentoo.org> shotwell-0.7.2.ebuild: Fix dependency on vala:0.10, bug #338067. diff --git a/media-gfx/shotwell/shotwell-0.8.1.ebuild b/media-gfx/shotwell/shotwell-0.8.1.ebuild new file mode 100644 index 000000000000..815ca0b1586f --- /dev/null +++ b/media-gfx/shotwell/shotwell-0.8.1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/shotwell-0.8.1.ebuild,v 1.1 2011/02/18 19:37:40 hollow Exp $ + +EAPI="2" +GCONF_DEBUG="no" + +inherit gnome2 versionator eutils + +MY_PV=$(get_version_component_range 1-2) +DESCRIPTION="Open source photo manager for GNOME" +HOMEPAGE="http://www.yorba.org/shotwell/" +SRC_URI="http://www.yorba.org/download/${PN}/${MY_PV}/${P}.tar.bz2" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=dev-db/sqlite-3.5.9:3 + >=dev-libs/dbus-glib-0.80 + >=dev-libs/libgee-0.5.0 + >=dev-libs/libunique-1.0.0 + >=dev-libs/libxml2-2.6.32 + >=gnome-base/gconf-2.22.0 + >=media-libs/libexif-0.6.16 + >=media-libs/libgphoto2-2.4.2 + >=net-libs/libsoup-2.26.0 + >=net-libs/webkit-gtk-1.1.5 + >=sys-fs/udev-145[extras] + >=x11-libs/gtk+-2.18.0:2 + >=media-libs/libraw-0.9.0 + >=media-libs/gexiv2-0.2.0 + >=dev-libs/json-glib-0.7.6 + media-libs/lcms:2" +DEPEND="${RDEPEND} + >=dev-lang/vala-0.9.7:0.10" + +DOCS="AUTHORS MAINTAINERS NEWS README THANKS" + +pkg_setup() { + G2CONF="${G2CONF} + --disable-schemas-install + --disable-desktop-update + --disable-icon-update" +} + +src_prepare() { + gnome2_src_prepare + + sed -e 's/valac/valac-0.10/' -i Makefile || die +} + +src_install() { + # This is needed so that gnome2_gconf_savelist() works correctly. + insinto "${EPREFIX}"/etc/gconf/schemas + doins misc/shotwell.schemas || die "install gconf schema failed" + gnome2_src_install +} |