27470e1676
* print/ghostscript{7,8,9,9-agpl}-base Installs Ghostscript binary, libgs, and related files. These ports do not depend on X11 libraries (i.e. x11* devices are not available). USES=ghostscript will set dependency on one of them depending on GHOSTSCRIPT_DEFAULT. The default device is set to "display" or "bbox". * print/ghostscript{7,8,9,9-agpl}-x11 Installs a shared library which provides X11 support to the installed Ghostscript binaries. x11* devices will be enabled when the library is available. This depends on *-base (RUN_DEPENDS). USES=ghostscript:x11 will set dependency on one of them. - Fix integer overflow reported as CVE-2015-3228. - Update Uses/ghostscript.mk: * Add x11 keyword. nox11 keyword is now obsolete. * Use packagename in *_DEPENDS line to prevent relationship between -base and -x11 packages from being broken. - Fix x11/nox11 keyword and bump PORTREVISION in ports using USES=ghostscript to update dependency of pre-compiled packages.
41 lines
987 B
Makefile
41 lines
987 B
Makefile
# Created by: Dryice Liu <dryice@liu.com.cn>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= etask
|
|
PORTVERSION= 0.3.91
|
|
PORTREVISION= 9
|
|
CATEGORIES= deskutils elisp
|
|
MASTER_SITES= http://members.chello.at/rene.weichselbaum/ \
|
|
http://dryice.name/computer/FreeBSD/distfiles/
|
|
|
|
MAINTAINER= dryice@dryice.name
|
|
COMMENT= Manage your projects or tasks within GNU Emacs
|
|
|
|
RUN_DEPENDS= xpdf:${PORTSDIR}/graphics/xpdf
|
|
|
|
USE_EMACS= yes
|
|
USES= ghostscript:run
|
|
USE_TEX= latex dvipsk
|
|
|
|
LISPDIR= ${PREFIX}/${EMACS_VERSION_SITE_LISPDIR}/${PORTNAME}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}a
|
|
|
|
PORTDOCS= etasktut.pdf gpl.txt README
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${EMACS_NAME} -batch -no-site-file\
|
|
--eval="(add-to-list 'load-path \"${WRKSRC}\")"\
|
|
-f batch-byte-compile *.el
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${LISPDIR}
|
|
.for i in *.el *.elc
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${LISPDIR}
|
|
.endfor
|
|
|
|
${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|