mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
60d1a83c2a
- Replace ${MASTER_SITE_FOO} with FOO. - Merge MASTER_SITE_SUBDIR into MASTER_SITES when possible. (This means 99.9% of the time.) - Remove occurrences of MASTER_SITE_LOCAL when no subdirectory was present and no hint of what it should be was present. - Fix some logic. - And generally, make things more simple and easy to understand. While there, add magic values to the FESTIVAL, GENTOO, GIMP, GNUPG, QT and SAMBA macros. Also, replace some EXTRACT_SUFX occurences with USES=tar:*. Checked by: make fetch-urlall-list With hat: portmgr Sponsored by: Absolight
31 lines
773 B
Makefile
31 lines
773 B
Makefile
# Created by: Masafumi NAKANE <max@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= dvi2tty
|
|
PORTVERSION= 5.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= japanese print
|
|
MASTER_SITES= LOCAL/hrs
|
|
PKGNAMESUFFIX= -ascii
|
|
DISTNAME= dvi2tty${PORTVERSION}
|
|
|
|
PATCH_SITES= ${MASTER_SITES}
|
|
PATCH_DIST_STRIP= -p1
|
|
PATCHFILES= dvi2tty-ascii-jtex-patch dvi2tty.c-patch
|
|
|
|
MAINTAINER= turutani@scphys.kyoto-u.ac.jp
|
|
COMMENT= Character-based DVI file previewer
|
|
|
|
RUN_DEPENDS= jless:${PORTSDIR}/japanese/less
|
|
|
|
PLIST_FILES= bin/jdvi2tty \
|
|
bin/jdisdvi \
|
|
man/man1/jdvi2tty.1.gz
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/jdvi2tty ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/disdvi ${STAGEDIR}${PREFIX}/bin/jdisdvi
|
|
${INSTALL_MAN} ${WRKSRC}/dvi2tty.1 ${STAGEDIR}${PREFIX}/man/man1/jdvi2tty.1
|
|
|
|
.include <bsd.port.mk>
|