mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
60 lines
1.5 KiB
Makefile
60 lines
1.5 KiB
Makefile
# Created by: Nicola Vitale <nivit@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= foxitreader
|
|
PORTVERSION= 1.1.0
|
|
#PORTREVISION= 0
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://cdn04.foxitsoftware.com/pub/foxit/%SUBDIR%/:reader,manual
|
|
MASTER_SITE_SUBDIR= reader/desktop/linux/1.x/${PORTVERSION:R}/enu/:reader \
|
|
manual/enu/:manual
|
|
DISTFILES= FoxitReader-${PORTVERSION}.tar.bz2:reader
|
|
EXTRACT_ONLY= FoxitReader-${PORTVERSION}.tar.bz2
|
|
|
|
MAINTAINER= nivit@FreeBSD.org
|
|
COMMENT= Free PDF document viewer for desktop Linux
|
|
|
|
LICENSE_NAME= EULA
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell
|
|
LICENSE_TEXT= http://www.foxitsoftware.com/pdf/desklinux/eula.htm
|
|
|
|
NO_BUILD= yes
|
|
|
|
PLIST_SUB= NLS="${NLS}"
|
|
|
|
USE_BZIP2= yes
|
|
USES= gettext
|
|
USE_LINUX= yes
|
|
USE_LINUX_APPS= cups-libs gtk2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTVERSION:R}-release
|
|
|
|
NO_STAGE= yes
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
DISTFILES+=FoxitReader${PORTVERSION:R}ForLinux_Manual.pdf:manual
|
|
.endif
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
NLS= ""
|
|
.else
|
|
NLS= "@comment "
|
|
.endif
|
|
|
|
do-install:
|
|
cd ${WRKSRC} && ${MKDIR} ${DATADIR} && \
|
|
${INSTALL_DATA} fpdfcjk.bin fum.fhd ${DATADIR} && \
|
|
${INSTALL_PROGRAM} FoxitReader ${DATADIR} && \
|
|
${LN} -s ${DATADIR}/FoxitReader ${PREFIX}/bin/FoxitReader
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
.for locale in de fr ja zh_CN zh_TW
|
|
${INSTALL_DATA} ${WRKSRC}/po/${locale}/FoxitReader.mo ${PREFIX}/share/locale/${locale}/LC_MESSAGES/
|
|
.endfor
|
|
.endif
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
${MKDIR} ${DOCSDIR} && \
|
|
${INSTALL_DATA} ${DISTDIR}/FoxitReader${PORTVERSION:R}ForLinux_Manual.pdf ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|