diff options
author | 2015-07-29 13:02:13 +0000 | |
---|---|---|
committer | 2015-07-29 13:02:13 +0000 | |
commit | 50f80b587655116b312b3ccd773d44c8fd7fb6b6 (patch) | |
tree | 59180d5c29b3e9e4245bd17ff3741bff973fd0f7 /media-gfx | |
parent | Fix sandbox violation when USE=examples and XDG_RUNTIME_DIR doesn't match por... (diff) | |
download | gentoo-2-50f80b587655116b312b3ccd773d44c8fd7fb6b6.tar.gz gentoo-2-50f80b587655116b312b3ccd773d44c8fd7fb6b6.tar.bz2 gentoo-2-50f80b587655116b312b3ccd773d44c8fd7fb6b6.zip |
version bump
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 0x4FDF9CFD2FAC514E!)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/photoqt/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/photoqt/photoqt-1.3.ebuild | 41 |
2 files changed, 47 insertions, 1 deletions
diff --git a/media-gfx/photoqt/ChangeLog b/media-gfx/photoqt/ChangeLog index 3a97f64634b3..eadfb45d3a94 100644 --- a/media-gfx/photoqt/ChangeLog +++ b/media-gfx/photoqt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/photoqt # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.5 2015/03/17 14:59:34 kensington Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.6 2015/07/29 13:02:13 yngwin Exp $ + +*photoqt-1.3 (29 Jul 2015) + + 29 Jul 2015; Ben de Groot <yngwin@gentoo.org> +photoqt-1.3.ebuild: + version bump 17 Mar 2015; Michael Palimaka <kensington@gentoo.org> photoqt-1.2.ebuild: Add missing dependencies wrt bug #543610. diff --git a/media-gfx/photoqt/photoqt-1.3.ebuild b/media-gfx/photoqt/photoqt-1.3.ebuild new file mode 100644 index 000000000000..6af57e408e52 --- /dev/null +++ b/media-gfx/photoqt/photoqt-1.3.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/photoqt-1.3.ebuild,v 1.1 2015/07/29 13:02:13 yngwin Exp $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="Simple but powerful Qt-based image viewer" +HOMEPAGE="http://photoqt.org/" +SRC_URI="http://photoqt.org/pkgs/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="graphicsmagick exiv2" + +RDEPEND="dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtimageformats:5 + dev-qt/qtmultimedia:5 + dev-qt/qtnetwork:5 + dev-qt/qtquickcontrols:5 + dev-qt/qtsql:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 + exiv2? ( media-gfx/exiv2:= ) + graphicsmagick? ( media-gfx/graphicsmagick )" +DEPEND="${RDEPEND} + dev-qt/linguist-tools:5" + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use graphicsmagick GM) + $(cmake-utils_use exiv2 EXIV2) + ) + cmake-utils_src_configure +} + +src_compile() { + MAKEOPTS+=" -j1" cmake-utils_src_compile +} |