From 921a9db178944b4af3a8574b041c14f6f483892a Mon Sep 17 00:00:00 2001 From: Juan RP Date: Fri, 21 Oct 2011 18:00:23 +0200 Subject: [PATCH] mdocml: update to 1.12.0. --- srcpkgs/mdocml/template | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) diff --git a/srcpkgs/mdocml/template b/srcpkgs/mdocml/template index f3a148930c6..f453d0955c7 100644 --- a/srcpkgs/mdocml/template +++ b/srcpkgs/mdocml/template @@ -1,13 +1,16 @@ # Template file for 'mdocml' pkgname=mdocml -version=1.10.9 -distfiles="http://mdocml.bsd.lv/snapshots/mdocml-$version.tar.gz" +version=1.12.0 +homepage="http://mdocml.bsd.lv" +distfiles="${homepage}/snapshots/mdocml-$version.tar.gz" build_style=gnu_makefile +make_build_args="DBLIB=-ldb" make_install_args="MANDIR=/usr/share/man BINDIR=/usr/bin EXAMPLEDIR=/usr/share/examples/mdocml PREFIX=/usr" short_desc="mdoc macro compiler" maintainer="Juan RP " -checksum=053b86d21edae5a80ecf6fe0927ab0e7dfaccbdec82eff98b4ef331d66ca8b65 +license="ISC" +checksum=887dbe722e459ce60a6f1e29e278f68932fab9592768b9b324503ba80fe17a5e long_desc=" mdocml is a suite of tools compiling -mdoc, the roff macro package of choice for BSD manual pages, and -man, the predominant historical package @@ -16,10 +19,16 @@ long_desc=" for -man." Add_dependency run glibc +Add_dependency build db-devel post_install() { - # roff.7 conflicts with groff, so rename it. + # roff.7 conflicts with groff, rename it. mv ${DESTDIR}/usr/share/man/man7/roff.7 \ ${DESTDIR}/usr/share/man/man7/mandoc_roff.7 + # preconv.1 conflicts with groff, rename it. + mv ${DESTDIR}/usr/share/man/man1/preconv.1 \ + ${DESTDIR}/usr/share/man/man1/mandoc_preconv.1 + # Remove unused stuff. + rm -rf ${DESTDIR}/usr/{include,lib} }