Received: from mx1.riseup.net (mx1.riseup.net [198.252.153.129]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 464E2782B99 for ; Wed, 15 Sep 2021 19:07:13 +0000 (UTC) Received: from fews2.riseup.net (fews2-pn.riseup.net [10.0.1.84]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "*.riseup.net", Issuer "Sectigo RSA Domain Validation Secure Server CA" (not verified)) by mx1.riseup.net (Postfix) with ESMTPS id 4H8qTW4nGqzF550; Wed, 15 Sep 2021 12:07:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=riseup.net; s=squak; t=1631732831; bh=2WStAlwjhs20tySGPT96To2P0Lr8dcuWaKJvtNzjq1Q=; h=From:To:Cc:Subject:Date:From; b=sH2HKHZ16YP/vPQQ80wBCk6nLoi+Hblt1XiGPVsNnS12HOCvCcXwiLmUNXyPRUdcC QBuAH8Y7N3RK2+Kyn+JBM4kD+3flz4vpsUcNEApdAv3QRs0aKsnFbQnK0DN4Em/pXR mUnzSla4cNbFkwtEEQaY89CB88fGpuEqEH0pUfeU= X-Riseup-User-ID: 78550C9BFBD38F32595299CA2ACCDDD1CA2C8B45BEB5F25C02BF8315D3E135BF Received: from [127.0.0.1] (localhost [127.0.0.1]) by fews2.riseup.net (Postfix) with ESMTPSA id 4H8qTV4DHsz21nX; Wed, 15 Sep 2021 12:07:10 -0700 (PDT) From: catdevnull@riseup.net To: alpine-aports@lists.alpinelinux.org Cc: Nulo Subject: [PATCH] main/mandoc: add /usr/local/share/man to MANPATH Date: Wed, 15 Sep 2021 16:06:53 -0300 Message-Id: <20210915190653.22606-1-catdevnull@riseup.net> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: Nulo This allows seeing the man pages of things installed to /usr/local. --- main/mandoc/APKBUILD | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main/mandoc/APKBUILD b/main/mandoc/APKBUILD index 1058e8da87..b725ddcdf7 100644 --- a/main/mandoc/APKBUILD +++ b/main/mandoc/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Natanael Copa pkgname=mandoc pkgver=1.14.5 -pkgrel=5 +pkgrel=6 pkgdesc="mandoc (formerly mdocml) UNIX manpage compiler toolset" url="https://mandoc.bsd.lv/" arch="all" @@ -27,11 +27,11 @@ prepare() { cat >configure.local<<-__EOF__ PREFIX=/usr - MANDIR=/usr/share/man + MANDIR=/usr/share/man:/usr/local/share/man LIBDIR=/usr/lib CFLAGS="$CFLAGS" UTF8_LOCALE="en_US.UTF-8" - MANPATH_DEFAULT="/usr/share/man:/usr/local/man" + MANPATH_DEFAULT="/usr/share/man:/usr/local/man:/usr/local/share/man" MANPATH_BASE="/usr/share/man" LN="ln -sf" HAVE_LESS_T=0 -- 2.33.0