mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-28 10:08:24 +00:00
7990f81066
After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816
68 lines
1.7 KiB
Makefile
68 lines
1.7 KiB
Makefile
# Created by: Radim Kolar
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= zgv
|
|
PORTVERSION= 5.9
|
|
PORTREVISION= 9
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= SUNSITE/apps/graphics/viewers/svga
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Graphics viewer for SVGAlib
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png \
|
|
libtiff.so:graphics/tiff
|
|
|
|
USES= gmake jpeg localbase:ldflags makeinfo
|
|
ALL_TARGET= zgv info
|
|
INFO= zgvrc
|
|
|
|
OPTIONS_DEFINE= SDL DOCS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSDL}
|
|
USE_SDL= sdl
|
|
MAKE_ENV+= BACKEND=SDL
|
|
CPPFLAGS+= $$(${SDL_CONFIG} --cflags)
|
|
LDFLAGS+= $$(${SDL_CONFIG} --libs)
|
|
.else
|
|
LIB_DEPENDS+= libvga.so:graphics/svgalib
|
|
MAKE_ENV+= BACKEND=SVGALIB
|
|
ONLY_FOR_ARGS= i386 amd64
|
|
.endif
|
|
|
|
post-extract:
|
|
@${RM} ${WRKSRC}/doc/zgv
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|^CC=|#CC=|g ; \
|
|
s|^CFLAGS=|#CFLAGS=|g ; \
|
|
s|^BACKEND=|#BACKEND=|g ; \
|
|
s|^PREFIX=|#PREFIX=|g ; \
|
|
s|/usr/X11R6|$${LOCALBASE}|g' ${WRKSRC}/config.mk
|
|
@${REINPLACE_CMD} -e \
|
|
's|-I/usr/local/include|$${CPPFLAGS}|g ; \
|
|
s|-L/usr/local/lib|$${LDFLAGS}|g ; \
|
|
s|=-lSDL|=|g' ${WRKSRC}/src/Makefile
|
|
@${GREP} -lR "SDL/SDL" ${WRKSRC} | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|SDL/SDL|SDL|g'
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/zgv ${STAGEDIR}${PREFIX}/bin/zgv
|
|
${INSTALL_MAN} ${WRKSRC}/doc/zgv.1 ${STAGEDIR}${MANPREFIX}/man/man1/zgv.1
|
|
${INSTALL_DATA} ${WRKSRC}/doc/sample.zgvrc ${STAGEDIR}${PREFIX}/etc/zgvrc.sample
|
|
${INSTALL_DATA} ${WRKSRC}/doc/zgv ${STAGEDIR}${PREFIX}/${INFO_PATH}/zgvrc.info
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in NEWS README SECURITY TODO INSTALL
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|