50 lines
1.2 KiB
Makefile
50 lines
1.2 KiB
Makefile
# $OpenBSD: Makefile,v 1.26 2001/05/06 03:19:44 lebel Exp $
|
|
|
|
COMMENT= "format ascii files for printing on PostScript printers"
|
|
|
|
DISTNAME= a2ps-4.13b
|
|
WRKDIST= ${WRKDIR}/a2ps-4.13
|
|
CATEGORIES= print
|
|
NEED_VERSION= 1.402
|
|
|
|
MAINTAINER= Tobias Weingartner <weingart@openbsd.org>
|
|
|
|
# License info. There is some questionable Sun and
|
|
# Adobe Copyrighted things in this source tree. It
|
|
# looks fine for FTP, but likely not for the CDROM.
|
|
PERMIT_PACKAGE_CDROM= "No fee redistribution."
|
|
PERMIT_DISTFILES_CDROM= "No fee redistribution."
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ftp://ftp.enst.fr/pub/unix/a2ps/
|
|
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
FLAVORS= a4 letter letterdj
|
|
FLAVOR?= letter
|
|
|
|
.if defined(FLAVOR)
|
|
.if ${FLAVOR:L} == "a4"
|
|
PAPERSIZE= A4
|
|
.elif ${FLAVOR:L} == "letterdj"
|
|
PAPERSIZE= Letterdj
|
|
.elif ${FLAVOR:L} == "letter"
|
|
PAPERSIZE= Letter
|
|
.endif
|
|
.endif
|
|
|
|
CONFIGURE_ARGS+= --with-medium=$(PAPERSIZE) \
|
|
${CONFIGURE_SHARED}
|
|
|
|
pre-build:
|
|
/usr/bin/touch $(WRKSRC)/doc/*.info
|
|
/usr/bin/touch $(WRKSRC)/doc/*.dvi
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/a2ps/etc
|
|
${INSTALL_DATA} ${WRKSRC}/etc/a2ps.cfg ${PREFIX}/share/a2ps/etc
|
|
${INSTALL_DATA} ${WRKSRC}/etc/a2ps-site.cfg ${PREFIX}/share/a2ps/etc
|
|
|
|
.include <bsd.port.mk>
|