From 83110b7d748855ee96ff7a3aef9fdc2f00ecea27 Mon Sep 17 00:00:00 2001 From: Sergey Popov Date: Sat, 7 Nov 2015 15:31:16 +0300 Subject: [PATCH] Add ebuild for QOwnNotes --- app-text/qownnotes/qownnotes-9999.ebuild | 37 ++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 app-text/qownnotes/qownnotes-9999.ebuild diff --git a/app-text/qownnotes/qownnotes-9999.ebuild b/app-text/qownnotes/qownnotes-9999.ebuild new file mode 100644 index 0000000..8a19500 --- /dev/null +++ b/app-text/qownnotes/qownnotes-9999.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 + +EGIT_REPO_URI="git://github.com/pbek/QOwnNotes.git" +inherit eutils git-r3 qmake-utils + +DESCRIPTION="Open source notepad with Owncloud support" +HOMEPAGE="http://www.qownnotes.org" +SRC_URI="" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="" + +RDEPEND=" + dev-qt/qtcore:5 + dev-qt/qtgui:5 + dev-qt/qtnetwork:5 + dev-qt/qtsql:5 + dev-qt/qtsvg:5 + dev-qt/qtwidgets:5 +" +DEPEND="${RDEPEND}" + +DOCS=( CHANGELOG.md README.md SHORTCUTS.md ) + +src_configure() { + eqmake5 src/QOwnNotes.pro +} + +src_install() { + dobin QOwnNotes + einstalldocs +}