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 0BC77138334 for ; Fri, 4 Oct 2019 18:25:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24F8FE081B; Fri, 4 Oct 2019 18:25:16 +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 0C1C5E081B for ; Fri, 4 Oct 2019 18:25:16 +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 D481634B90D for ; Fri, 4 Oct 2019 18:25:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C662A744 for ; Fri, 4 Oct 2019 18:25:12 +0000 (UTC) From: "Andreas K. Hüttel" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas K. Hüttel" Message-ID: <1570213451.d49dbf89ccab93e1f4ae966b0ffd6e0992f71b45.dilfridge@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-print/foomatic-db-engine/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-print/foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild X-VCS-Directories: net-print/foomatic-db-engine/ X-VCS-Committer: dilfridge X-VCS-Committer-Name: Andreas K. Hüttel X-VCS-Revision: d49dbf89ccab93e1f4ae966b0ffd6e0992f71b45 X-VCS-Branch: master Date: Fri, 4 Oct 2019 18:25:12 +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: 19ca27c3-1e37-42ea-bf1c-b8a4d52a1405 X-Archives-Hash: f2c72bb9fc78bdd9a07fa237f778f91f commit: d49dbf89ccab93e1f4ae966b0ffd6e0992f71b45 Author: Andreas K. Hüttel gentoo org> AuthorDate: Fri Oct 4 18:24:11 2019 +0000 Commit: Andreas K. Hüttel gentoo org> CommitDate: Fri Oct 4 18:24:11 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d49dbf89 net-print/foomatic-db-engine: move from perl-app.eclass to perl-module.eclass Package-Manager: Portage-2.3.70, Repoman-2.3.17 Signed-off-by: Andreas K. Hüttel gentoo.org> .../foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/net-print/foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild b/net-print/foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild index c714859db0b..5cf7dd511c1 100644 --- a/net-print/foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild +++ b/net-print/foomatic-db-engine/foomatic-db-engine-4.0.12.ebuild @@ -1,10 +1,9 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 -GENTOO_DEPEND_ON_PERL_SUBSLOT=yes -inherit eutils perl-app versionator autotools +inherit eutils perl-module versionator autotools DESCRIPTION="Generates ppds out of xml foomatic printer description files" HOMEPAGE="http://www.linuxprinting.org/foomatic.html" @@ -30,6 +29,9 @@ src_prepare() { "${FILESDIR}"/4.0.12-use-pkgconfig.patch sed -i -e "s:@LIB_CUPS@:$(cups-config --serverbin):" Makefile.in || die eautoreconf + + cd lib + perl-module_src_prepare } src_configure() { @@ -37,14 +39,14 @@ src_configure() { emake defaults cd lib - perl-app_src_configure + perl-module_src_configure } src_compile() { default cd lib - perl-app_src_compile + perl-module_src_compile } src_install() {