forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
media-gfx/eog: version bump from 3.18.2 to 3.18.3
CVE-2016-6855 and memory leaks. Package-Manager: portage-2.3.0
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST eog-3.18.2.tar.xz 4327676 SHA256 dc2d16e3754cad12703261fe586e7599c4df2e39282f6c28681a514f749fe636 SHA512 6c5b14f5e3915e1821a0883036c546b9bb2f8c578c5d5d23b863f7f4210d76b169e23de552888e17579241c382697b4576e52a2ca7495eb06cd3375c6d6206ee WHIRLPOOL d443cec6fa86eedd6eeafa9623940542b70b5ee4b9d90e8c10f9971f13af235203ca8c58391f14f3990951a3088840ea5d1ae108624208ac4c9bce7416670d16 | ||
DIST eog-3.18.3.tar.xz 4334460 SHA256 fb534bab125f28445fe7d17ea04817ba17e2a9a0d94ba6bc6408a3aadab43563 SHA512 fbe7eb2cedfd773826736e03ed6944090a0a2a4098cb33d6da02ab70404327eb8012bfc892c8f340f005c4c8e3068e20401656d0caa46bd6e5cf45207de545e2 WHIRLPOOL e68515c18f416cc518f498897587b608fca0a6a04e0c73cf648761592d9593fe721b7179a2ba6c7942709ade2b58ede89d7c547411c5fa44a86c572f051cbd69 | ||
DIST eog-3.20.3.tar.xz 4607588 SHA256 16308c389deced3acb801dcc180c5e5e18b1db6ba5bd5835b5320cba9b0d2c26 SHA512 3a64bc2d10c606f9582772f085869f0f66a83bc99c9ce59a5e8883de480a862e24b667151b58a111205047f208e74c5d463ba0124e33fda3b2ca168904478068 WHIRLPOOL 390f0b98262052d628b3685d521143f86c5af02f277bb9f6ba4e5762cf9a433a2e1cde30521ef8c551a2284c61f363f48c414b9d12e2d79800d2f3724da0d36d |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Copyright 1999-2016 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
# $Id$ | ||
|
||
EAPI="5" | ||
GCONF_DEBUG="yes" | ||
GNOME2_LA_PUNT="yes" | ||
|
||
inherit gnome2 | ||
|
||
DESCRIPTION="The Eye of GNOME image viewer" | ||
HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome" | ||
|
||
LICENSE="GPL-2+" | ||
SLOT="1" | ||
IUSE="+exif +introspection +jpeg lcms +svg tiff xmp" | ||
REQUIRED_USE="exif? ( jpeg )" | ||
|
||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" | ||
|
||
RDEPEND=" | ||
>=dev-libs/glib-2.38:2[dbus] | ||
>=dev-libs/libpeas-0.7.4:=[gtk] | ||
>=gnome-base/gnome-desktop-2.91.2:3= | ||
>=gnome-base/gsettings-desktop-schemas-2.91.92 | ||
>=x11-libs/gtk+-3.14:3[introspection,X] | ||
>=x11-misc/shared-mime-info-0.20 | ||
>=x11-libs/gdk-pixbuf-2.30.0:2[jpeg?,tiff?] | ||
x11-libs/libX11 | ||
exif? ( >=media-libs/libexif-0.6.14 ) | ||
introspection? ( >=dev-libs/gobject-introspection-0.9.3:= ) | ||
jpeg? ( virtual/jpeg:0 ) | ||
lcms? ( media-libs/lcms:2 ) | ||
svg? ( >=gnome-base/librsvg-2.36.2:2 ) | ||
xmp? ( media-libs/exempi:2 ) | ||
" | ||
DEPEND="${RDEPEND} | ||
>=dev-util/gtk-doc-am-1.16 | ||
>=dev-util/intltool-0.50.1 | ||
dev-util/itstool | ||
sys-devel/gettext | ||
virtual/pkgconfig | ||
" | ||
|
||
src_configure() { | ||
DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO" | ||
gnome2_src_configure \ | ||
$(use_enable introspection) \ | ||
$(use_with jpeg libjpeg) \ | ||
$(use_with exif libexif) \ | ||
$(use_with lcms cms) \ | ||
$(use_with xmp) \ | ||
$(use_with svg librsvg) | ||
} |