39 lines
685 B
Makefile
39 lines
685 B
Makefile
# $OpenBSD: Makefile,v 1.10 2015/03/16 18:07:39 naddy Exp $
|
|
|
|
COMMENT= curses development kit
|
|
|
|
V= 5.0-20060507
|
|
DISTNAME= cdk-${V}
|
|
PKGNAME= cdk-${V:S/-/./}
|
|
REVISION = 2
|
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
SHARED_LIBS += cdk 0.0 # .4.0
|
|
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://invisible-island.net/cdk/
|
|
|
|
MAINTAINER= Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
|
|
MASTER_SITES= ftp://invisible-island.net/cdk/
|
|
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
CONFIGURE_ARGS= --with-ncurses \
|
|
--with-libtool=${LIBTOOL}
|
|
USE_GROFF = Yes
|
|
|
|
NO_TEST= Yes
|
|
|
|
# format tables in man pages
|
|
post-build:
|
|
cd ${WRKSRC}/man && for m in *.[1-9] ; do \
|
|
mv $$m $$m.bak && tbl $$m.bak > $$m ; done
|
|
|
|
.include <bsd.port.mk>
|