39 lines
795 B
Makefile
39 lines
795 B
Makefile
# $OpenBSD: Makefile,v 1.3 2021/01/14 21:55:21 fcambus Exp $
|
|
|
|
COMMENT = convert Mac font formats to/from pfb, ttf, otf and bdf files
|
|
|
|
DISTNAME = fondu_src-060102
|
|
PKGNAME = ${DISTNAME:S/_src//}
|
|
EXTRACT_SUFX = .tgz
|
|
REVISION = 0
|
|
|
|
CATEGORIES = converters
|
|
|
|
HOMEPAGE = http://fondu.sourceforge.net/
|
|
|
|
# BSD
|
|
PERMIT_PACKAGE = Yes
|
|
|
|
WANTLIB += c m
|
|
|
|
MASTER_SITES = http://fondu.sourceforge.net/
|
|
|
|
WRKDIST = ${WRKDIR}/${PKGNAME}
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
|
|
CONFIGURE_ARGS = --bindir=${PREFIX}/bin
|
|
|
|
MAKE_FLAGS = CFLAGS="${CFLAGS}"
|
|
|
|
NO_TEST = Yes
|
|
|
|
post-install:
|
|
.for f in dfont2res fondu frombin lumper showfond tobin ufond
|
|
${INSTALL_MAN} ${WRKSRC}/${f}.1 ${PREFIX}/man/man1
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fondu
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/fondu
|
|
|
|
.include <bsd.port.mk>
|