From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 9C847138330 for ; Sat, 26 May 2018 23:45:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 64A9EE0AFC; Sat, 26 May 2018 23:45:50 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 375B6E0AFC for ; Sat, 26 May 2018 23:45:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 86CC3335CB7 for ; Sat, 26 May 2018 23:45:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DEF552B1 for ; Sat, 26 May 2018 23:45:46 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1527378304.38d913951bad84e36a13a2f79aed46b94cfe4fce.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: app-misc/gnote/ X-VCS-Repository: proj/gnome X-VCS-Files: app-misc/gnote/gnote-3.26.0.ebuild X-VCS-Directories: app-misc/gnote/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 38d913951bad84e36a13a2f79aed46b94cfe4fce X-VCS-Branch: master Date: Sat, 26 May 2018 23:45:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 882397f5-55f5-4516-92ac-16a2fd4e8b97 X-Archives-Hash: f483153bd4739faeddff969356347392 commit: 38d913951bad84e36a13a2f79aed46b94cfe4fce Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sat May 26 22:29:19 2018 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sat May 26 23:45:04 2018 +0000 URL: https://gitweb.gentoo.org/proj/gnome.git/commit/?id=38d91395 app-misc/gnote: 3.24.1 → 3.26.0 Formatting and actions menus redesigned. Translation updates. Package-Manager: Portage-2.3.40, Repoman-2.3.9 Manifest-Sign-Key: 0x5A56C8CD0C13248A app-misc/gnote/gnote-3.26.0.ebuild | 71 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) diff --git a/app-misc/gnote/gnote-3.26.0.ebuild b/app-misc/gnote/gnote-3.26.0.ebuild new file mode 100644 index 00000000..45ad245e --- /dev/null +++ b/app-misc/gnote/gnote-3.26.0.ebuild @@ -0,0 +1,71 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +GNOME2_LA_PUNT="yes" + +inherit gnome2 readme.gentoo-r1 + +DESCRIPTION="Desktop note-taking application" +HOMEPAGE="https://wiki.gnome.org/Apps/Gnote" + +LICENSE="GPL-3+ FDL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +# Automagic: +# glib-2.32 dep +# >=dev-libs/unittest++-1.5.1 (but not detected due to missing .pc) +COMMON_DEPEND=" + >=app-crypt/libsecret-0.8 + >=app-text/gtkspell-3.0:3 + >=dev-cpp/glibmm-2.32:2 + >=dev-cpp/gtkmm-3.18:3.0 + >=dev-libs/glib-2.32:2[dbus] + >=dev-libs/libxml2-2:2 + dev-libs/libxslt + >=sys-apps/util-linux-2.16:= + >=x11-libs/gtk+-3.20:3 +" +RDEPEND="${COMMON_DEPEND} + gnome-base/gsettings-desktop-schemas +" +DEPEND="${DEPEND} + app-text/docbook-xml-dtd:4.1.2 + >=dev-util/intltool-0.35.0 + dev-util/itstool + virtual/pkgconfig +" + +src_prepare() { + # Do not alter CFLAGS + sed 's/-DDEBUG -g/-DDEBUG/' -i configure.ac configure || die + + gnome2_src_prepare + + if has_version net-fs/wdfs; then + DOC_CONTENTS="You have net-fs/wdfs installed. app-misc/gnote will use it to + synchronize notes." + else + DOC_CONTENTS="Gnote can use net-fs/wdfs to synchronize notes. + If you want to use that functionality just emerge net-fs/wdfs. + Gnote will automatically detect that you did and let you use it." + fi +} + +src_configure() { + gnome2_src_configure \ + --disable-static \ + $(use_enable debug) +} + +src_install() { + gnome2_src_install + readme.gentoo_create_doc +} + +pkg_postinst() { + gnome2_pkg_postinst + readme.gentoo_print_elog +}