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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0980B158087 for ; Sat, 27 Nov 2021 14:19:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 304AAE0875; Sat, 27 Nov 2021 14:19:06 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 63076E0874 for ; Sat, 27 Nov 2021 14:19:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 41F123430D5 for ; Sat, 27 Nov 2021 14:19:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B65AA1D6 for ; Sat, 27 Nov 2021 14:19:02 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1638022549.c8c2c1671c6801a6693fda30f90aa1b61872e748.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apache/mod_auth_tkt/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild X-VCS-Directories: www-apache/mod_auth_tkt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c8c2c1671c6801a6693fda30f90aa1b61872e748 X-VCS-Branch: master Date: Sat, 27 Nov 2021 14:19:02 +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: c68d659f-7ef4-44fa-ac4e-4d91f9c7c7ca X-Archives-Hash: 8e7785302f0936dd3a6c30ba2f7f3d40 commit: c8c2c1671c6801a6693fda30f90aa1b61872e748 Author: Sam James gentoo org> AuthorDate: Sat Nov 27 14:15:49 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Nov 27 14:15:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c2c167 www-apache/mod_auth_tkt: add missing dies, use BDEPEND for Perl We use BDEPEND for Perl's pod2man. Signed-off-by: Sam James gentoo.org> www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild b/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild index 776d3a822186..787f1c49d693 100644 --- a/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild +++ b/www-apache/mod_auth_tkt/mod_auth_tkt-2.1.0-r2.ebuild @@ -13,7 +13,7 @@ LICENSE="Apache-2.0" SLOT="0" KEYWORDS="~amd64 ~x86" -DEPEND="dev-lang/perl" +BDEPEND="dev-lang/perl" APACHE2_MOD_CONF="10_${PN}" APACHE2_MOD_DEFINE="AUTH_TKT" @@ -36,7 +36,7 @@ pkg_setup() { } src_configure() { - ./configure --apachever=2.2 --apxs=${APXS} + ./configure --apachever=2.2 --apxs=${APXS} || die } src_compile() { @@ -45,7 +45,8 @@ src_compile() { src_install() { apache-module_src_install - pod2man --section=5 --release=${PV} doc/${PN}.{pod,5} + + pod2man --section=5 --release=${PV} doc/${PN}.{pod,5} || die doman doc/${PN}.5 }