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 1C4F0138334 for ; Fri, 20 Dec 2019 09:23:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5BE51E08CE; Fri, 20 Dec 2019 09:23:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 3A7DDE08C3 for ; Fri, 20 Dec 2019 09:23:17 +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 5975734D87E for ; Fri, 20 Dec 2019 09:23:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D154E97A for ; Fri, 20 Dec 2019 09:23:14 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1576833793.c8f66b57191e2072a5f603161e877aedaf57622a.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/beaver/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/beaver/beaver-0.4.1-r1.ebuild X-VCS-Directories: app-editors/beaver/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: c8f66b57191e2072a5f603161e877aedaf57622a X-VCS-Branch: master Date: Fri, 20 Dec 2019 09:23:14 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6f719e66-ca8e-482b-8665-60b27a09bd70 X-Archives-Hash: 2bd2b2fa28a6b7cc148da2d0bead7c9c commit: c8f66b57191e2072a5f603161e877aedaf57622a Author: Jeroen Roovers gentoo org> AuthorDate: Fri Dec 20 09:19:47 2019 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Fri Dec 20 09:23:13 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8f66b57 app-editors/beaver: EAPI=7 - Inherit xdg-utils - Call xdg_desktop_database_update - Remove pointless IUSE=debug - Update HOMEPAGE Package-Manager: Portage-2.3.82, Repoman-2.3.20 Signed-off-by: Jeroen Roovers gentoo.org> app-editors/beaver/beaver-0.4.1-r1.ebuild | 54 +++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) diff --git a/app-editors/beaver/beaver-0.4.1-r1.ebuild b/app-editors/beaver/beaver-0.4.1-r1.ebuild new file mode 100644 index 00000000000..57efb98a47a --- /dev/null +++ b/app-editors/beaver/beaver-0.4.1-r1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 +inherit flag-o-matic xdg-utils + +DESCRIPTION="Beaver is an Early AdVanced EditoR" +HOMEPAGE="https://sourceforge.net/projects/beaver-editor/" +SRC_URI="mirror://sourceforge/beaver-editor/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND=" + >=dev-libs/glib-2.14:2 + >=x11-libs/gtk+-2.10:2 +" +DEPEND=" + ${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig + doc? ( app-doc/doxygen ) +" +PATCHES=( + "${FILESDIR}"/${PN}-0.4.1-desktop-file-validate.patch +) + +src_configure() { + append-cflags -fgnu89-inline + + econf \ + $(use_enable doc doxygen-doc) \ + --disable-debug +} + +DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO ) + +src_install() { + default + find "${ED}" -name '*.la' -delete || die +} + +pkg_postinst() { + xdg_desktop_database_update + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_desktop_database_update + xdg_icon_cache_update +}