X-Original-To: alpine-aports@mail.alpinelinux.org Delivered-To: alpine-aports@mail.alpinelinux.org Received: from mail.alpinelinux.org (dallas-a1.alpinelinux.org [127.0.0.1]) by mail.alpinelinux.org (Postfix) with ESMTP id 9A67EDC06BD for ; Wed, 23 Sep 2015 19:43:29 +0000 (UTC) Received: from lithium.8pit.net (lithium.8pit.net [141.101.32.65]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by mail.alpinelinux.org (Postfix) with ESMTPS id EDC4ADC0075; Wed, 23 Sep 2015 19:43:28 +0000 (UTC) Received: from localhost (ip5f5ac904.dynamic.kabel-deutschland.de [95.90.201.4]); by lithium.8pit.net (OpenSMTPD) with ESMTPSA id abc07e88; TLS version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO; Wed, 23 Sep 2015 21:43:25 +0200 (CEST) From: =?UTF-8?q?S=C3=B6ren=20Tempel?= To: alpine-aports@lists.alpinelinux.org Subject: [alpine-aports] [PATCH] main/sudo: fix installation of man pages Date: Wed, 23 Sep 2015 21:43:20 +0200 Message-Id: <1443037400-16750-1-git-send-email-soeren+git@soeren-tempel.net> X-Mailer: git-send-email 2.5.3 X-Virus-Scanned: ClamAV using ClamSMTP X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: Before this commit man pages where installed to /usr/share/man/cat[0-8] and didn't use mdoc macros. --- main/sudo/APKBUILD | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/main/sudo/APKBUILD b/main/sudo/APKBUILD index f94ee5c..3d19c02 100644 --- a/main/sudo/APKBUILD +++ b/main/sudo/APKBUILD @@ -7,7 +7,7 @@ if [ "${pkgver%_*}" != "$pkgver" ]; then else _realver=$pkgver fi -pkgrel=0 +pkgrel=1 pkgdesc="Give certain users the ability to run some commands as root" url="http://www.sudo.ws/sudo/" arch="all" @@ -39,7 +39,10 @@ build() { --host=$CHOST \ --prefix=/usr \ --libexecdir=/usr/lib \ + --mandir=/usr/share/man \ --with-env-editor \ + --with-man \ + --with-mdoc \ --without-pam \ --without-skey \ --with-passprompt="[sudo] password for %p: " \ -- 2.5.3 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---