1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-04 22:33:27 +00:00
freebsd-ports/print/mp-letter/Makefile
Satoshi Asami f44828dd89 Mark a bunch of ports with MANUAL_PACKAGE_BUILD. With a change to
bsd.port.mk that will be committed soon, this will disable automatic
package building when PACKAGE_BUILDING is defined (so they can be
built from separate scripts).

These are no-ops for ordinary users (i.e., when PACKAGE_BUILDING is
not defined).
1997-11-10 11:23:41 +00:00

45 lines
1.0 KiB
Makefile

# New ports collection makefile for: mp
# Version required: 3.0.1
# Date created: 11 July 1996
# Whom: David O'Brien <obrien@cs.ucdavis.edu>
#
# $Id: Makefile,v 1.5 1997/10/10 06:53:32 obrien Exp $
#
DISTNAME= mp-3.0.1
PKGNAME= mp-${PAPERSIZE}-3.0.1
CATEGORIES= print
MASTER_SITES= ftp://ftp.NUXI.com/pub/misc/ \
ftp://ftp.win.tue.nl/pub/mail/
MAINTAINER= obrien@FreeBSD.org
MANUAL_PACKAGE_BUILD= PAPERSIZE has to be set to letter a4
WRKSRC= ${WRKDIR}/mp
USE_GMAKE= yes
MAN1= mp.1
.if !defined(PAPERSIZE)
PAPERSIZE=letter
.elif ${PAPERSIZE} == A4 || ${PAPERSIZE} == a4
INSTALL_TARGET= install-a4
.endif
pre-patch:
@${CP} ${WRKSRC}/Makefile.dist ${WRKSRC}/Makefile
MP_UTILS= digestp filep filofaxp franklinp mailp newsp timemanp timesysp
post-install:
.if !defined(NOMANCOMPRESS)
-(cd ${PREFIX}/man/man1 ; \
for mpu in $(MP_UTILS) ; do \
ln -sf mp.1.gz $$mpu.1.gz ; done)
.else
-(cd ${PREFIX}/man/man1 ; \
for mp in $(MP_UTILS) ; do \
ln -sf mp.1 $$mpu.1 ; done)
.endif
.include <bsd.port.mk>