mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
76510fd443
- Support amd64
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# New ports collection makefile for: a2ps (letter)
|
|
# Date created: 15 July 1998
|
|
# Whom: Chuck Robey (chuckr@freebsd.org)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= a2ps
|
|
PORTVERSION= 4.13b
|
|
PORTREVISION= 1
|
|
CATEGORIES= print
|
|
MASTER_SITES= ftp://ftp.enst.fr/pub/unix/a2ps/ \
|
|
${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
PKGNAMESUFFIX= -${PAPERSIZE}
|
|
DISTFILES= a2ps-${PORTVERSION}${EXTRACT_SUFX}
|
|
EXTRACT_ONLY= ${DISTNAME}${EXTRACT_SUFX}
|
|
|
|
MAINTAINER= dinoex@FreeBSD.org
|
|
COMMENT= Formats an ascii file for printing on a postscript printer
|
|
|
|
USE_PERL5= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_SHLIB= yes
|
|
MAN1= a2ps.1 ogonkify.1 card.1 psmandup.1 fixps.1 pdiff.1 psset.1 texi2dvi4a2ps.1
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-4.13
|
|
|
|
PAPERSIZE?= letter
|
|
PAPERSIZECNF= ${PAPERSIZE:S/l/L/:S/a/A/}
|
|
STRIP=
|
|
CONFIGURE_ARGS= --with-medium=${PAPERSIZECNF} --sharedstatedir=$(PREFIX)/share --sysconfdir=$(PREFIX)/etc --datadir=$(PREFIX)/share --localstatedir=$(PREFIX)/share
|
|
|
|
.if ${PAPERSIZE} != a4 && ${PAPERSIZE} != letter && ${PAPERSIZE} != letterdj
|
|
.BEGIN:
|
|
@${ECHO}
|
|
@${ECHO} "PAPERSIZE incorrect value: ${PAPERSIZE}."
|
|
@${ECHO}
|
|
@${ECHO} "Must specify PAPERSIZE as one of a4, letter, or letterdj."
|
|
@${ECHO} "letterdj allows a slightly larger margins for DeskJets."
|
|
@${FALSE}
|
|
.endif
|
|
|
|
.if defined(WITH_EMACS)
|
|
PLIST_SUB+= WITHEMACS=""
|
|
.else
|
|
PLIST_SUB+= WITHEMACS="@comment "
|
|
.endif
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${PREFIX}/bin/a2ps
|
|
(cd ${WRKSRC}/doc; ${MAKE} install)
|
|
install-info ${PREFIX}/info/a2ps.info ${PREFIX}/info/dir
|
|
install-info ${PREFIX}/info/ogonkify.info ${PREFIX}/info/dir
|
|
install-info ${PREFIX}/info/regex.info ${PREFIX}/info/dir
|
|
${RM} -f ${PREFIX}/lib/liba2ps.la
|
|
|
|
.include <bsd.port.mk>
|