aboutsummaryrefslogtreecommitdiffstats
path: root/print/dvi2xx/Makefile
blob: a802161f822b80bdcc617c8fc39c42a046d91134 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
DISTNAME=   dvi2xx
DISTFILES=  dvi2xx.tar.gz
CATEGORIES+=    printing

.if !defined(MASTER_SITE_OVERRIDE)
#other equivalent sites: ftp.shsu.edu dtp.dante.de
CTAN=       ftp.tex.ac.uk
FTP_DIR=    /tex-archive/dviware
FTPGET=     ${WRKDIR}/ftpget

pre-fetch:
    @if [ ! -d ${DISTDIR} ]; then mkdir -p ${DISTDIR}; fi
    @mkdir -p ${WRKDIR}
    @${SCRIPTDIR}/ftpget magic ${WRKDIR}

fetch: pre-fetch ${DISTFILES}
.endif

dvi2xx.tar.gz:
    @(cd ${DISTDIR}; if [ ! -f $@ ]; then \
      echo ">> $@ doesn't seem to exist on this system."; \
      echo ">> Attempting to fetch it from a master site."; \
      ${FTPGET} ${CTAN} ${FTP_DIR} $@ $@ ;\
      if [ ! -f $@ ]; then \
            echo ">> Couldn't fetch it - please try to retrieve this";\
        echo ">> port manually into ${DISTDIR} and try again."; \
        exit 1; \
      else \
        echo ">> $@ Fetched!" ; \
      fi; fi)

pre-install:
    @mkdir -p ${PREFIX}/bin
    @mkdir -p ${PREFIX}/man/man1
    @mkdir -p ${PREFIX}/lib/dvi2xx
    @(cd ${WRKSRC}; install -m 755 -c MakeTeXPK ${PREFIX}/bin)
    @(cd ${WRKSRC}; install -c -m 644 2up.sty  graybox.sty lj3-filter \
      printcap.sample sample2.tex testpage.tex ${PREFIX}/lib/dvi2xx/)

.include <bsd.port.mk>