1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-21 00:25:50 +00:00

- Remove option for ispell spell checking, now deprecated [1]

- Add DOCS option to config menu
- Revise DESKTOP_ENTRIES
- Fix staging support, use install.py -b option to set
  STAGEDIR correctly, otherwise it leaks to compiled
  code and scripts

Submitted by:	bapt [1]
This commit is contained in:
Pawel Pekala 2014-01-28 23:50:29 +00:00
parent 54b76750e3
commit f90ced7dc8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=341678

View File

@ -3,7 +3,7 @@
PORTNAME= treeline
PORTVERSION= 1.4.1
PORTREVISION= 6
PORTREVISION= 7
CATEGORIES= deskutils python
MASTER_SITES= SF/${PORTNAME}/${PORTVERSION}/:treeline \
http://treeline.bellz.org/plugins/:plugins \
@ -17,43 +17,34 @@ COMMENT= Structured information storage program
LICENSE= GPLv2
BUILD_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}qt4-gui>=0:${PORTSDIR}/x11-toolkits/py-qt4-gui \
${PYTHON_PKGNAMEPREFIX}qt4-network>=0:${PORTSDIR}/net/py-qt4-network
${PYTHON_PKGNAMEPREFIX}qt4-network>=0:${PORTSDIR}/net/py-qt4-network \
aspell:${PORTSDIR}/textproc/aspell
WRKSRC= ${WRKDIR}/TreeLine
USE_QT4= # empty
USE_PYTHON= 2
NO_BUILD= yes
DESKTOP_ENTRIES= "TreeLine" "Structured information storage program" \
"${DATADIR}/icons/tree/treeline.png" "treeline" \
"Utility;" false
DESKTOP_ENTRIES= "TreeLine" "" "${DATADIR}/icons/tree/treeline.png" \
"${PORTNAME}" "Utility;" false
OPTIONS_DEFINE= HTTPLOAD
OPTIONS_SINGLE= SPELLER
OPTIONS_SINGLE_SPELLER= ASPELL ISPELL
HTTPLOAD_DESC= httpLoad plugin
SPELLER_DESC= Spell checking backend
OPTIONS_DEFAULT= ASPELL
OPTIONS_DEFINE= DOCS HTTPLOAD
OPTIONS_SUB= yes
ASPELL_BUILD_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
ASPELL_RUN_DEPENDS= aspell:${PORTSDIR}/textproc/aspell
HTTPLOAD_DESC= httpLoad plugin
HTTPLOAD_DISTFILES= httpload2.py:plugins
ISPELL_BUILD_DEPENDS= ispell:${PORTSDIR}/textproc/ispell
ISPELL_RUN_DEPENDS= ispell:${PORTSDIR}/textproc/ispell
.include <bsd.port.options.mk>
do-install:
cd ${WRKSRC} && ${PYTHON_CMD} install.py -p ${STAGEDIR}${PREFIX} \
-d ${STAGEDIR}${DOCSDIR} -i ${STAGEDIR}${DATADIR}/icons -x
(cd ${WRKSRC} && ${PYTHON_CMD} install.py -b ${STAGEDIR} -p ${PREFIX} \
-d ${DOCSDIR} -i ${DATADIR}/icons)
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/${PORTNAME}/plugins
.if ${PORT_OPTIONS:MHTTPLOAD}
${INSTALL_DATA} ${DISTDIR}/httpload2.py \
${STAGEDIR}${PREFIX}/lib/${PORTNAME}/plugins/
${STAGEDIR}${PREFIX}/lib/${PORTNAME}/plugins
.endif
.include <bsd.port.mk>