diff options
author | wiz <wiz> | 2011-04-05 09:27:31 +0000 |
---|---|---|
committer | wiz <wiz> | 2011-04-05 09:27:31 +0000 |
commit | d56a79a372016fb5d8f15d2fad9382da1f34b98f (patch) | |
tree | 4cca61309b94a4f58c5a98303f521de19afd632a /textproc/mdocml/Makefile | |
parent | 0abe7fe2ae2a3245c273008fd7106007be7f7ab4 (diff) | |
download | pkgsrc-d56a79a372016fb5d8f15d2fad9382da1f34b98f.tar.gz |
Update to 1.11.1:
The earlier libroff, libmdoc, and libman soup have been merged into
a single library, libmandoc, which manages all aspects of parsing
real manuals (from line-handling to tbl parsing).
Beyond this structural change, initial eqn functionality is in
place. For the time being, this is limited to the recognition of
equation blocks; future version of mdocml will expand upon this
framework.
As usual, many general fixes and improvements have also occured.
In particular, a great deal of redundancy and superfluous code has
been removed with the merging of the backend libraries.
Diffstat (limited to 'textproc/mdocml/Makefile')
-rw-r--r-- | textproc/mdocml/Makefile | 17 |
1 files changed, 2 insertions, 15 deletions
diff --git a/textproc/mdocml/Makefile b/textproc/mdocml/Makefile index 3c721bb273b..199f9470e32 100644 --- a/textproc/mdocml/Makefile +++ b/textproc/mdocml/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2011/01/13 09:39:41 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2011/04/05 09:27:31 wiz Exp $ -DISTNAME= mdocml-1.10.9 +DISTNAME= mdocml-1.11.1 CATEGORIES= textproc devel MASTER_SITES= http://mdocml.bsd.lv/snapshots/ @@ -11,17 +11,4 @@ LICENSE= 2-clause-bsd # not exactly, but near enough PKG_DESTDIR_SUPPORT= user-destdir -INSTALLATION_DIRS= bin ${PKGMANDIR}/man3 ${PKGMANDIR}/man7 share/examples/mandoc - -do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/mandoc ${DESTDIR}${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/man.3 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 - ${INSTALL_MAN} ${WRKSRC}/man.7 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7/mandoc_man.7 - ${INSTALL_MAN} ${WRKSRC}/mandoc_char.7 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7 - ${INSTALL_MAN} ${WRKSRC}/mdoc.7 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7/mandoc_mdoc.7 - ${INSTALL_MAN} ${WRKSRC}/mdoc.3 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 - ${INSTALL_MAN} ${WRKSRC}/roff.3 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man3 - ${INSTALL_MAN} ${WRKSRC}/roff.7 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man7/mandoc_roff.7 - ${INSTALL_DATA} ${WRKSRC}/example.style.css ${DESTDIR}${PREFIX}/share/examples/mandoc/style.css - .include "../../mk/bsd.pkg.mk" |