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 F41021382C5 for ; Wed, 17 Feb 2021 09:37:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55117E0884; Wed, 17 Feb 2021 09:37:19 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 40408E0884 for ; Wed, 17 Feb 2021 09:37:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 2F1B83416F7 for ; Wed, 17 Feb 2021 09:37:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EC5B94F1 for ; Wed, 17 Feb 2021 09:37:14 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1613554582.167e9e18d4fd7df04e275e8e8570d8234c3b716f.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/gtklp/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/gtklp/gtklp-1.3.1.ebuild X-VCS-Directories: net-print/gtklp/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 167e9e18d4fd7df04e275e8e8570d8234c3b716f X-VCS-Branch: master Date: Wed, 17 Feb 2021 09:37: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: 23a78a4a-0ff9-4393-be9a-fb45286d7092 X-Archives-Hash: 413d1396f84775ba4ad1f0a11eef831b commit: 167e9e18d4fd7df04e275e8e8570d8234c3b716f Author: Jakov Smolic sartura hr> AuthorDate: Wed Feb 17 09:36:22 2021 +0000 Commit: David Seifert gentoo org> CommitDate: Wed Feb 17 09:36:22 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=167e9e18 net-print/gtklp: Port to EAPI 7 Closes: https://bugs.gentoo.org/708374 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: David Seifert gentoo.org> net-print/gtklp/gtklp-1.3.1.ebuild | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/net-print/gtklp/gtklp-1.3.1.ebuild b/net-print/gtklp/gtklp-1.3.1.ebuild index b1eb8322df2..6b98fb7e5f3 100644 --- a/net-print/gtklp/gtklp-1.3.1.ebuild +++ b/net-print/gtklp/gtklp-1.3.1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -inherit autotools eutils +inherit autotools desktop flag-o-matic DESCRIPTION="A GUI for cupsd" HOMEPAGE="https://gtklp.sirtobi.com/" @@ -15,14 +15,13 @@ SLOT="0" KEYWORDS="amd64 ppc ~sparc x86" IUSE="nls ssl" -RDEPEND="x11-libs/gtk+:2 +RDEPEND=" net-print/cups + x11-libs/gtk+:2 nls? ( sys-devel/gettext ) ssl? ( dev-libs/openssl:0= )" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -DOCS="AUTHORS BUGS ChangeLog README TODO USAGE" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" PATCHES=( "${FILESDIR}/${P}-formatsec.patch" ) @@ -35,6 +34,7 @@ src_prepare() { } src_configure() { + append-cflags -fcommon econf \ $(use_enable nls) \ $(use_enable ssl) \ @@ -44,6 +44,7 @@ src_configure() { src_install() { default + dodoc USAGE doicon "${WORKDIR}"/gtklp-logo.xpm make_desktop_entry 'gtklp -i' "Print files via CUPS" gtklp-logo 'System;HardwareSettings;Settings;Printing' make_desktop_entry gtklpq "CUPS queue manager" gtklp-logo 'System;HardwareSettings;Settings;Printing'