mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
18a5ffe5e7
mdoc. Unlike most DocBook utilities, it's a standalone ISC-licensed ISO C utility that should compile on any modern UNIX system. The only requirement is libexpat (for parsing XML), which is installed by default on most systems. WWW: http://mdocml.bsd.lv/docbook2mdoc/
24 lines
439 B
Makefile
24 lines
439 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= docbook2mdoc
|
|
PORTVERSION= 0.0.9
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://mdocml.bsd.lv/docbook2mdoc/snapshots/
|
|
|
|
MAINTAINER= bapt@FreeBSD.org
|
|
COMMENT= Convert DocBook refentry to mdoc
|
|
|
|
LICENSE= ISCL
|
|
|
|
LIB_DEPENDS= libexpat.so:${PORTSDIR}/textproc/expat2
|
|
|
|
PLIST_FILES= bin/docbook2mdoc \
|
|
man/man1/docbook2mdoc.1.gz
|
|
|
|
USES= tar:tgz
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.mk>
|