mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
1c668a284d
Changes from 0.7.2 to 0.7.3 * Fix warnings Additional port changes: * Changed to DISTVERSION * Added LICENSE_FILE * Added to USE_XORG Reported by: portscout Approved by: tcberner (mentor, implicit)
54 lines
1.6 KiB
Makefile
54 lines
1.6 KiB
Makefile
# Created by: Fernan Aguero <fernan@iib.unsam.edu.ar>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flpsed
|
|
DISTVERSION= 0.7.3
|
|
CATEGORIES= print
|
|
MASTER_SITES= http://flpsed.org/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= WYSIWYG Postscript annotator
|
|
|
|
LICENSE= GPLv3
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS+= libfltk.so:x11-toolkits/fltk \
|
|
libfontconfig.so:x11-fonts/fontconfig
|
|
|
|
USES= desktop-file-utils ghostscript:x11 gmake
|
|
GNU_CONFIGURE= yes
|
|
USE_XORG= x11 xcursor xext xfixes xft xinerama xrender
|
|
|
|
PLIST_FILES= bin/flpsed \
|
|
man/man1/flpsed.1.gz \
|
|
share/applications/flpsed.desktop \
|
|
share/icons/flpsed.png \
|
|
share/icons/flpsed.svg
|
|
PORTDOCS= README
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/src/flpsed ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/flpsed.1 ${STAGEDIR}${PREFIX}/man/man1
|
|
${INSTALL_DATA} ${WRKSRC}/flpsed.desktop ${STAGEDIR}${PREFIX}/share/applications
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/share/icons
|
|
${INSTALL_DATA} ${WRKSRC}/flpsed.png ${WRKSRC}/flpsed.svg ${STAGEDIR}${PREFIX}/share/icons
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README ${STAGEDIR}${DOCSDIR}
|
|
|
|
post-install:
|
|
.if !exists(${LOCALBASE}/bin/pdftops)
|
|
@${ECHO_CMD} ""
|
|
@${ECHO_CMD} " Consider installing graphics/xpdf, to take full advantage of "
|
|
@${ECHO_CMD} " flpsed's ability to edit PDF files by first converting them "
|
|
@${ECHO_CMD} " to PostScript via xpdf's pdftops(1) before editing, and then "
|
|
@${ECHO_CMD} " transforming the edited Postscript files back to PDF via "
|
|
@${ECHO_CMD} " Ghostscript's ps2pdf(1). "
|
|
@${ECHO_CMD} ""
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|