1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00
freebsd-ports/print/catdvi/Makefile
Boris Samorodov c8821edb09 . fix build:
-----
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).
2014-07-03 14:36:33 +00:00

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>