void-packages/srcpkgs/man-db/template
Đoàn Trần Công Danh 765e304c4b srcpkgs/m*: convert patches to -Np1
```sh
git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" |
while read template; do
	for p in ${template%/template}/patches/*; do
		sed -i '
			\,^[+-][+-][+-] /dev/null,b
			/^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b
			s,^[*][*][*] ,&a/,
			/^--- /{
				s,\(^--- \)\(./\)*,\1a/,
				s,[.][Oo][Rr][Ii][Gg]\([	/]\),\1,
				s/[.][Oo][Rr][Ii][Gg]$//
				s/[.]patched[.]\([^.]\)/.\1/
				h
			}
			/^+++ -/{
				g
				s/^--- a/+++ b/
				b
			}
			s,\(^+++ \)\(./\)*,\1b/,
		' "$p"
	done
	sed -i '/^patch_args=/d' $template
done
```
2021-06-20 13:17:29 +07:00

55 lines
1.9 KiB
Bash

# Template file for 'man-db'
pkgname=man-db
version=2.9.4
revision=1
build_style=gnu-configure
configure_args="--with-db=db --with-pager=less --with-gzip=/usr/bin/gzip
--with-bzip2=/usr/bin/bzip2 --disable-rpath --enable-threads=posix
--with-lzma=/usr/bin/lzma --with-xz=/usr/bin/xz --disable-setuid
--without-included-regex --enable-automatic-create --with-libseccomp
--without-systemdsystemunitdir --without-systemdtmpfilesdir
--enable-cache-owner=_man"
hostmakedepends="groff pkg-config"
makedepends="db-devel gettext-devel groff libpipeline-devel libseccomp-devel
zlib-devel"
depends="bzip2 coreutils grep groff gzip less"
conf_files="/etc/man_db.conf"
short_desc="On-line manual database"
maintainer="Orphaned <orphan@voidlinux.org>"
license="GPL-2.0-or-later, LGPL-2.1-or-later"
homepage="https://www.nongnu.org/man-db/"
changelog="https://git.savannah.gnu.org/cgit/man-db.git/plain/NEWS"
distfiles="${NONGNU_SITE}/man-db/man-db-${version}.tar.xz"
checksum=b66c99edfad16ad928c889f87cf76380263c1609323c280b3a9e6963fdb16756
provides="man-0_1"
lib32disabled=yes
system_accounts="_man"
_man_homedir="/var/cache/man"
make_dirs="/var/cache/man 0755 _man _man"
# among others, requires the _man user to be available in the masterdir
make_check=no
alternatives="
man:man:/usr/bin/mandb-man
man:whatis:/usr/bin/mandb-whatis
man:apropos:/usr/bin/mandb-whatis
man:man.1:/usr/share/man/man1/mandb-man.1
man:whatis.1:/usr/share/man/man1/mandb-whatis.1
man:apropos.1:/usr/share/man/man1/mandb-apropos.1"
case "$XBPS_TARGET_MACHINE" in
*-musl) CFLAGS+=" -I${XBPS_CROSS_BASE}/usr/include/gettext"
LDFLAGS+=" -lintl";;
esac
post_install() {
# Rename files for alternatives
for f in apropos man whatis; do
mv ${DESTDIR}/usr/bin/{$f,mandb-$f}
mv ${DESTDIR}/usr/share/man/man1/{$f,mandb-$f}.1
done
# Install the cron daily job.
vinstall ${FILESDIR}/man-db.cron-daily 744 etc/cron.daily man-db
}