mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
c8821edb09
----- cc -O2 -pipe -fno-strict-aliasing -I/usr/local/include -DCFG_HAS_GETOPT_LONG -c -o kpathsea.o kpathsea.c kpathsea.c:39:23: error: redefinition of 'kpathsea_version_string' with a different type: 'char *' vs 'const char *' extern char * kpathsea_version_string; ----- . remove the indefinite article from COMMENT; . add LICENSE (GPLv2).
32 lines
594 B
Makefile
32 lines
594 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= catdvi
|
|
PORTVERSION= 0.14
|
|
PORTREVISION= 7
|
|
CATEGORIES= print
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= DVI to text/plain translator
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_TEX= latex
|
|
USES= gmake
|
|
GNU_CONFIGURE= yes
|
|
MAKEFILE= GNUmakefile
|
|
ALL_TARGET= # empty
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
PLIST_FILES= bin/catdvi man/man1/catdvi.1.gz
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/catdvi ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/catdvi.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|