* Unbreak groff manuals by using tbl(1); reported by pascal@. * Deal with our Mdocdate cvs keyword; as designed by jmc@ in 2007. * Use troffrc for OpenBSD config changes; suggested by Werner Lemberg. * Unbreak the hdtbl examples; from upstream. * Volume names in man(7) page headers; suggested by Yuri Pankov. * Update various string tables; coordinated with upstream. * Add a README explaining local changes; using feedback from pascal@. * Better description and bump. ok pascal@, and tested in an i386 bulk build by naddy@, thanks!
34 lines
868 B
Makefile
34 lines
868 B
Makefile
# $OpenBSD: Makefile,v 1.15 2011/12/04 15:41:26 schwarze Exp $
|
|
|
|
COMMENT = GNU troff typesetter
|
|
DISTNAME = groff-1.21
|
|
REVISION = 6
|
|
|
|
CATEGORIES = textproc
|
|
HOMEPAGE = http://www.gnu.org/software/groff/
|
|
MAINTAINER = Ingo Schwarze <schwarze@openbsd.org>
|
|
|
|
# GPLv3+
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c m stdc++
|
|
|
|
MASTER_SITES = ${MASTER_SITE_GNU:=groff/}
|
|
|
|
MAKE_FLAGS += docdir=${PREFIX}/share/doc/groff \
|
|
exampledir=${PREFIX}/share/examples/groff
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ARGS += --without-libiconv-prefix --without-gs --without-x
|
|
|
|
MODGNU_CONFIG_GUESS_DIRS = ${WRKSRC} ${WRKSRC}/src/libs/gnulib/build-aux
|
|
|
|
pre-configure:
|
|
find ${WRKBUILD} -name \*.pl -type f | \
|
|
xargs perl -pi -e 's@^#![[:space:]]*/usr/bin/env[[:space:]]+perl@#!/usr/bin/perl@'
|
|
|
|
.include <bsd.port.mk>
|