diff options
author | Ben de Groot <yngwin@gentoo.org> | 2014-12-15 13:44:50 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2014-12-15 13:44:50 +0000 |
commit | 282f00456bcda99c5f99c8692de6082e613a63c2 (patch) | |
tree | 1444b1aff5c8e77323188481c980fcf0b1c2a599 /media-gfx/photoqt | |
parent | Version bump. (diff) | |
download | gentoo-2-282f00456bcda99c5f99c8692de6082e613a63c2.tar.gz gentoo-2-282f00456bcda99c5f99c8692de6082e613a63c2.tar.bz2 gentoo-2-282f00456bcda99c5f99c8692de6082e613a63c2.zip |
Add version bump to last Qt4-based version (bug #514622)
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 0x0F9C590B7FF324F6!)
Diffstat (limited to 'media-gfx/photoqt')
-rw-r--r-- | media-gfx/photoqt/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/photoqt/photoqt-1.0.ebuild | 37 |
2 files changed, 43 insertions, 1 deletions
diff --git a/media-gfx/photoqt/ChangeLog b/media-gfx/photoqt/ChangeLog index b2e7c1c4a505..66cb27f44e94 100644 --- a/media-gfx/photoqt/ChangeLog +++ b/media-gfx/photoqt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/photoqt # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.1 2014/12/15 13:02:21 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/ChangeLog,v 1.2 2014/12/15 13:44:50 yngwin Exp $ + +*photoqt-1.0 (15 Dec 2014) + + 15 Dec 2014; Ben de Groot <yngwin@gentoo.org> +photoqt-1.0.ebuild: + Add version bump to last Qt4-based version (bug #514622) *photo-0.8-r1 (19 Aug 2014) diff --git a/media-gfx/photoqt/photoqt-1.0.ebuild b/media-gfx/photoqt/photoqt-1.0.ebuild new file mode 100644 index 000000000000..fe6eb6f79b20 --- /dev/null +++ b/media-gfx/photoqt/photoqt-1.0.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/photoqt/photoqt-1.0.ebuild,v 1.1 2014/12/15 13:44:50 yngwin Exp $ + +EAPI=5 +inherit cmake-utils + +DESCRIPTION="Simple but powerful Qt-based image viewer" +HOMEPAGE="http://photoqt.org/" +SRC_URI="http://photoqt.org/oldRel/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64" +IUSE="exiv2 graphicsmagick" # phonon" + +DEPEND="dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtsql:4 + exiv2? ( media-gfx/exiv2:= ) + graphicsmagick? ( media-gfx/graphicsmagick:= )" +# phonon? ( || ( media-libs/phonon dev-qt/qtphonon ) )" # fails to compile +RDEPEND="${DEPEND}" + +src_prepare() { + # make desktop file validate; needs more work + echo ';' >> "${S}"/${PN}.desktop || die +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use exiv2 EXIV2) + $(cmake-utils_use graphicsmagick GM) + -DPHONON=OFF + ) + cmake-utils_src_configure +} |