# New ports collection makefile for: apsfilter # Date created: Tue Nov 14 18:29:48 MET 1995 # Whom: Andreas Klemm # # $FreeBSD$ # PORTNAME= apsfilter PORTVERSION= 7.2.5 PORTREVISION= 4 CATEGORIES= print MASTER_SITES= http://www.apsfilter.org/download/ MAINTAINER= andreas@FreeBSD.org COMMENT= Magic print filter with file type recognition, print preview, duplex printing DIST_SUBDIR= apsfilter USE_SUBMAKE= yes # special arrangement for package building, build stuff without X11 # to make memory footprint of apsfilter package smaller .if defined(BATCH) && defined(PACKAGE_BUILDING) NO_X= yes .endif .if defined(WITHOUT_X11) # XXX Hack. If you've done something like "-DWITHOUT_X11" on the command line # (instead of WITHOUT_X11=true, or similar) gmake won't pick it up. So make # sure that NO_X is defined *and* has a value. MAKE_ENV+= NO_X=true .endif # # define WITH_GHOSTSCRIPT_AFPL=yes for AFPL Postscript interpreter # instead of GNU one # .if defined(WITH_GHOSTSCRIPT_AFPL) GSPORT?= print/ghostscript-afpl .else GSPORT?= print/ghostscript-gnu .endif # # hint: for batch mode you can now draw the following decisions # - build and install most important filter utilities # that don't require X # - APSFILTER_ALL build and install all supported filter utilities # - WITHOUT_X11 toggles not to build tools that need X11, even if # APSFILTER_ALL is set # .if defined(BATCH) && defined(APSFILTER_ALL) # # Build and install all filter apsfilter knows about (rather expensive) # # ps emulator .if defined(WITHOUT_X11) GSPORT= ${GSPORT}-nox11 .endif RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} # all needed decompression utilities .if !exists(/usr/bin/bzip2) RUN_DEPENDS+= bunzip2:${PORTSDIR}/archivers/bzip2 .endif RUN_DEPENDS+= melt:${PORTSDIR}/archivers/freeze RUN_DEPENDS+= lzop:${PORTSDIR}/archivers/lzop # all needed "ASCII to ps" filter utilities RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-letter RUN_DEPENDS+= enscript:${PORTSDIR}/print/enscript-letter RUN_DEPENDS+= mpage:${PORTSDIR}/print/mpage RUN_DEPENDS+= recode:${PORTSDIR}/converters/recode # all needed "ARCHIVE" extraction utilities RUN_DEPENDS+= arc:${PORTSDIR}/archivers/arc RUN_DEPENDS+= cabextract:${PORTSDIR}/archivers/cabextract RUN_DEPENDS+= lha:${PORTSDIR}/archivers/lha RUN_DEPENDS+= rar:${PORTSDIR}/archivers/rar RUN_DEPENDS+= rpm:${PORTSDIR}/archivers/rpm RUN_DEPENDS+= unarj:${PORTSDIR}/archivers/unarj RUN_DEPENDS+= unzip:${PORTSDIR}/archivers/unzip RUN_DEPENDS+= zoo:${PORTSDIR}/archivers/zoo # all needed "xxx to ps" filter utilities RUN_DEPENDS+= fitstopnm:${PORTSDIR}/graphics/netpbm RUN_DEPENDS+= htmldoc:${PORTSDIR}/textproc/htmldoc RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-letter .if !defined(WITHOUT_X11) # "xxx to ps" filter utilities that require X RUN_DEPENDS+= acroread5:${PORTSDIR}/print/acroread5 RUN_DEPENDS+= convert:${PORTSDIR}/graphics/ImageMagick RUN_DEPENDS+= dvips:${PORTSDIR}/print/teTeX RUN_DEPENDS+= wmf2eps:${PORTSDIR}/graphics/libwmf RUN_DEPENDS+= sk2ps:${PORTSDIR}/graphics/sketch RUN_DEPENDS+= tgif:${PORTSDIR}/graphics/tgif-nls RUN_DEPENDS+= transfig:${PORTSDIR}/print/transfig .else # "xxx to ps" filter utilities that don't require X # XXX needs more work .endif # all possible remote printing support RUN_DEPENDS+= pap:${PORTSDIR}/net/netatalk RUN_DEPENDS+= smbclient:${PORTSDIR}/net/samba .elif defined(BATCH) # # in normal batch/portbuilding mode (without building all) # don't build too many dependencies # since apsfilter should fit easily on installation CD 1... # # ps emulator .if defined(WITHOUT_X11) GSPORT= ${GSPORT}-nox11 .endif RUN_DEPENDS= gs:${PORTSDIR}/${GSPORT} # most important "xxx to ps" filter utilities RUN_DEPENDS+= a2ps:${PORTSDIR}/print/a2ps-letter RUN_DEPENDS+= psnup:${PORTSDIR}/print/psutils-letter .endif # needed for aps2file :-/ RUN_DEPENDS+= bash:${PORTSDIR}/shells/bash2 # HP IJS driver is not automatically part of ghostscript port anymore RUN_DEPENDS+= hpijs:${PORTSDIR}/print/hpijs MAN1= apsfilter.1 aps2file.1 apsfilter-bug.1 apspreview.1 MAN5= apsfilterrc.5 HAS_CONFIGURE= yes USE_BZIP2= yes WRKSRC= ${WRKDIR}/apsfilter SCRIPTS_ENV= WRKDIRPREFIX="${WRKDIRPREFIX}" GSPORT="${GSPORT}" # make a2ps port happy in this early stage PAPERSIZE?=letter pre-fetch: .if !defined(WITH_GHOSTSCRIPT_AFPL) @${ECHO} "" @${ECHO} " Define WITH_GHOSTSCRIPT_AFPL=yes to use" @${ECHO} " AFPL Postscript interpreter instead of GNU one" @${ECHO} "" .endif .if !defined(BATCH) pre-configure: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc post-clean: @${RM} -f ${WRKDIRPREFIX}${.CURDIR}/Makefile.inc .if exists(${WRKDIRPREFIX}${.CURDIR}/Makefile.inc) .include "${WRKDIRPREFIX}${.CURDIR}/Makefile.inc" .endif .endif post-install: .if defined(OSVERSION) && ${OSVERSION} < 400012 @${ECHO} "********************************************************" @${ECHO} "* Please Note: *" @${ECHO} "********************************************************" @${ECHO} "You have FreeBSD version <= 4.0. If you want to print " @${ECHO} "troff files then you have to install the grog utility " @${ECHO} "from groff sources: " @${ECHO} " cp /usr/src/contrib/groff/grog/grog.sh /usr/bin/grog" @${ECHO} " chmod 555 /usr/bin/grog " @${ECHO} "--------------------------------------------------------" .endif @${CAT} ${.CURDIR}/pkg-message .include