blob: a25cc2f046b1c66410a529d8c7bd35fc5dcee2b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/phototonic/phototonic-1.5.ebuild,v 1.2 2014/12/15 14:08:30 yngwin Exp $
EAPI=5
inherit qmake-utils
DESCRIPTION="Image viewer and organizer"
HOMEPAGE="http://oferkv.github.io/phototonic/"
if [[ ${PV} = *9999* ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/oferkv/phototonic.git"
KEYWORDS=""
else
SRC_URI="https://github.com/oferkv/phototonic/archive/v${PV}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="GPL-3"
SLOT="0"
IUSE="svg tiff"
RDEPEND="dev-qt/qtwidgets:5
dev-qt/qtgui:5
dev-qt/qtcore:5
media-gfx/exiv2:=
svg? ( dev-qt/qtsvg:5 )
tiff? ( dev-qt/qtimageformats:5 )"
DEPEND="${RDEPEND}"
src_configure() {
eqmake5
}
src_install() {
emake install INSTALL_ROOT="${D}"
}
|