diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-04-29 13:53:35 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-04-29 13:53:35 +0000 |
commit | 04d2e3f5ba779f3c5f2d445cf99b8d9b1dd725a7 (patch) | |
tree | a009b43cd80182028329e818635b11d887886594 /media-gfx/shotwell | |
parent | Version bump. Remove obsolete versions. Fix building with automake-1.13 (bug ... (diff) | |
download | gentoo-2-04d2e3f5ba779f3c5f2d445cf99b8d9b1dd725a7.tar.gz gentoo-2-04d2e3f5ba779f3c5f2d445cf99b8d9b1dd725a7.tar.bz2 gentoo-2-04d2e3f5ba779f3c5f2d445cf99b8d9b1dd725a7.zip |
media-gfx/shotwell: Version BUmp, #467854
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'media-gfx/shotwell')
-rw-r--r-- | media-gfx/shotwell/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/shotwell/shotwell-0.14.1.ebuild | 97 |
2 files changed, 103 insertions, 1 deletions
diff --git a/media-gfx/shotwell/ChangeLog b/media-gfx/shotwell/ChangeLog index d73e33be8a91..9d22aa370d77 100644 --- a/media-gfx/shotwell/ChangeLog +++ b/media-gfx/shotwell/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/shotwell # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.53 2013/04/07 16:26:09 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/ChangeLog,v 1.54 2013/04/29 13:53:35 jlec Exp $ + +*shotwell-0.14.1 (29 Apr 2013) + + 29 Apr 2013; Justin Lecher <jlec@gentoo.org> +shotwell-0.14.1.ebuild: + Version BUmp, #467854 07 Apr 2013; Justin Lecher <jlec@gentoo.org> -shotwell-0.12.3.ebuild, -shotwell-0.13.1.ebuild, -shotwell-0.13.1-r1.ebuild: diff --git a/media-gfx/shotwell/shotwell-0.14.1.ebuild b/media-gfx/shotwell/shotwell-0.14.1.ebuild new file mode 100644 index 000000000000..a10e3220a3b7 --- /dev/null +++ b/media-gfx/shotwell/shotwell-0.14.1.ebuild @@ -0,0 +1,97 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/shotwell/shotwell-0.14.1.ebuild,v 1.1 2013/04/29 13:53:35 jlec Exp $ + +EAPI=5 + +GCONF_DEBUG="no" +VALA_MIN_API_VERSION="0.18" + +inherit eutils gnome2 multilib toolchain-funcs vala versionator + +MY_PV=$(get_version_component_range 1-2) +DESCRIPTION="Open source photo manager for GNOME" +HOMEPAGE="http://yorba.org/shotwell/" +SRC_URI="http://www.yorba.org/download/${PN}/stable/${P}.tar.xz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +LANGS="af ar as ast bg bn ca cs da de el en_GB es et eu fi fr gl gu he hi hr hu ia id it ja kk kn +ko lt lv mk ml mr nb nl pa pl pt pt_BR ro ru sk sl sr sv ta te th tr uk vi zh_CN zh_TW" + +for x in ${LANGS}; do + IUSE+="linguas_${x} " +done + +RDEPEND=" + >=dev-db/sqlite-3.5.9:3 + >=dev-libs/dbus-glib-0.80 + >=dev-libs/glib-2.30.0:2 + >=dev-libs/json-glib-0.7.6 + >=dev-libs/libgee-0.5.0:0 + >=dev-libs/libxml2-2.6.32:2 + >=media-libs/gexiv2-0.4.90 + media-libs/gst-plugins-base:1.0 + media-libs/gst-plugins-good:1.0 + media-libs/gstreamer:1.0 + media-libs/lcms:2 + >=media-libs/libexif-0.6.16 + >=media-libs/libgphoto2-2.4.2:= + >=media-libs/libraw-0.14.0 + >=net-libs/libsoup-2.26.0:2.4 + net-libs/rest:0.7 + net-libs/webkit-gtk:3 + virtual/udev[gudev] + x11-libs/gtk+:3" +DEPEND="${RDEPEND} + $(vala_depend) + sys-devel/m4" + +DOCS=( AUTHORS MAINTAINERS NEWS README THANKS ) + +# This probably comes from libraries that +# shotwell-video-thumbnailer links to. +# Nothing we can do at the moment. #435048 +QA_FLAGS_IGNORED="/usr/bin/${PN}-video-thumbnailer" + +pkg_setup() { + tc-export CC + G2CONF="${G2CONF} + --disable-schemas-compile + --disable-desktop-update + --disable-icon-update + --prefix=/usr + --lib=$(get_libdir)" +} + +src_prepare() { + vala_src_prepare + sed \ + -e 's|CFLAGS :|CFLAGS +|g' \ + -i plugins/Makefile.plugin.mk || die + epatch \ + "${FILESDIR}"/${PN}-0.13.1-ldflags.patch +} + +src_configure() { + ./configure \ + ${G2CONF} \ + || die +} + +src_compile() { + local valaver="$(vala_best_api_version)" + emake VALAC="$(type -p valac-${valaver})" +} + +src_install() { + gnome2_src_install + for x in ${LANGS}; do + if ! has ${x} ${LINGUAS}; then + find "${D}"/usr/share/locale/${x} -type f -exec rm {} \; + fi + done +} |