diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1998-11-20 04:15:15 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1998-11-20 04:15:15 +0000 |
commit | 751790b51ae4c1152e8944cbaf99d49b1377e95b (patch) | |
tree | 086c03d44a933a34d3f086e2ad7487d5d6b2872d /japanese/vfxdvi300 | |
parent | (1) Remove LOOP_VAR and LOOP_OPTIONS. It's a hack and just too many things (diff) |
Remove LOOP_VAR and replace it with tiny Makefiles using MASTERDIR to
share most files. Repository copy the default to explicitly named
directories to avoid any confusion. Greatly simplify the shared
Makefiles, since we are now in different subdirectories, we don't need
"a4-install" stuff.
While I'm here, consistently name the variables. Here are the
guidelines (master port is in brackets)
DOCFORMAT: [html] pdf ps
KONFONT: 14dot [16dot]
PAPERSIZE: a4 [letter] letterdj
RESOLUTION: 118 240 [300] 360 400 600
"math/r" has been copied to "R-a4" and "R-letter", to follow the
spirit of the original port. "japanese/kon" is renamed to "kon2-*",
since that seems to be the basename.
Notes
Notes:
svn path=/head/; revision=14709
Diffstat (limited to 'japanese/vfxdvi300')
-rw-r--r-- | japanese/vfxdvi300/Makefile | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/japanese/vfxdvi300/Makefile b/japanese/vfxdvi300/Makefile index 0aece2c4e887..828fa360c3f2 100644 --- a/japanese/vfxdvi300/Makefile +++ b/japanese/vfxdvi300/Makefile @@ -3,7 +3,7 @@ # Date created: 8 Nov 1996 # Whom: Mita Yoshio <mita@jp.FreeBSD.org> # -# $Id: Makefile,v 1.12 1998/10/30 10:31:44 asami Exp $ +# $Id: Makefile,v 1.13 1998/11/07 10:49:47 asami Exp $ # DISTNAME= xdvi-17 @@ -23,8 +23,6 @@ MAINTAINER= mita@jp.FreeBSD.org LIB_DEPENDS= VFlib2.23:${PORTSDIR}/japanese/vflib RUN_DEPENDS= ${LOCALBASE}/lib/fonts/pk${RESOLUTION}:${PORTSDIR}/print/pkfonts${RESOLUTION} -LOOP_VAR= RESOLUTION -LOOP_OPTIONS= 118 240 300 360 400 600 WRKSRC= ${WRKDIR} DIST_SUBDIR= xdvi USE_IMAKE= yes @@ -33,26 +31,16 @@ EXTRACT_ONLY= xdvi-17.tar.gz .if !defined(RESOLUTION) RESOLUTION= 300 -RESOLUTION_UNSPECIFIED= yes .else .if ${RESOLUTION} != 118 && ${RESOLUTION} != 240 && \ ${RESOLUTION} != 300 && ${RESOLUTION} != 360 && \ ${RESOLUTION} != 400 && ${RESOLUTION} != 600 -RESOLUTION_INVALID= yes -.endif -.endif - -pre-fetch: -.if defined(RESOLUTION_UNSPECIFIED) - @echo "Building xdvi with ${RESOLUTION}dpi fonts." - @echo "Set the environment variable RESOLUTION if you want" - @echo "it to use other resolutions." - @echo "Possible values are: 118, 240, 300 (default), 360, 400 and 600." -.elif defined(RESOLUTION_INVALID) - @echo "Error: invalid value for RESOLUTION: \"${RESOLUTION}\"" - @echo "Possible values are: 118, 240, 300 (default), 360, 400 and 600." +.BEGIN: + @${ECHO} "Error: invalid value for RESOLUTION: \"${RESOLUTION}\"" + @${ECHO} "Possible values are: 118, 240, 300, 360, 400 and 600." @${FALSE} .endif +.endif pre-patch: @(cd ${WRKDIR} ; \ |