blob: 5e2ee078409c4f7063399b5832f0fee5bd1a838c (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit qmake-utils versionator
if [[ "${PV}" == "9999" ]] ; then
inherit git-r3
EGIT_REPO_URI="https://github.com/baumgarr/${PN}.git"
SLOT="0/9999"
else
MY_PV="$(replace_version_separator 2 '-')"
SRC_URI="https://github.com/baumgarr/${PN}/archive/v${MY_PV}.tar.gz -> ${PN}-${MY_PV}.tar.gz"
SLOT="0/2"
S="${WORKDIR}/${PN}-${MY_PV}"
fi
DESCRIPTION="Nixnote - A clone of Evernote for Linux"
HOMEPAGE="http://sourceforge.net/projects/nevernote/"
LICENSE="GPL-2"
KEYWORDS="amd64 x86"
IUSE="qt4 qt5 +opencv3"
REQUIRED_USE="^^ ( qt4 qt5 )
qt5? ( opencv3 )
"
DEPEND="dev-libs/boost
app-text/hunspell
qt4? (
app-text/poppler[qt4]
dev-qt/qtwebkit:4
dev-qt/qtcore:4
dev-qt/qtgui:4
dev-qt/qtsql:4
)
qt5? (
app-text/poppler[qt5]
dev-qt/qtwebkit:5
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtsql:5
)
opencv3? ( media-libs/opencv:0/3.1 )
!opencv3? ( media-libs/opencv:0/2.4 )
"
RDEPEND="${DEPEND}
app-text/htmltidy"
# After commit 836482e, NixNote2 can not be compiled with qt4 any more
if [[ "${PV}" == *9999* ]] && use qt4; then
EGIT_COMMIT="836482e00c93618560c2896bbac87d3f89d17299"
fi
src_prepare() {
# fix VideoCapture undefined reference error with opencv-3
if use opencv3; then
sed -i 's/LIBS += /LIBS += -lopencv_videoio/g' NixNote2.pro
sed -i '/\#include "opencv\/cv.h"/i\#include "opencv2\/videoio.hpp"' dialog/webcamcapturedialog.h
fi
lupdate -pro NixNote2.pro -no-obsolete || die
lrelease NixNote2.pro || die
if use qt4; then
eqmake4 NixNote2.pro || die "qmake failed"
fi
if use qt5; then
eqmake5 NixNote2.pro || die "qmake failed"
fi
}
src_install() {
insinto /usr/share/nixnote2
doins -r help images java qss translations changelog.txt license.html shortcuts.txt *.ini
rm -r ${D}/usr/share/nixnote2/translations/*.ts
dobin nixnote2
insinto /usr/share/applications
doins nixnote2.desktop
doman ${S}/man/nixnote2.1
}
|