diff options
author | ultima <ultima@FreeBSD.org> | 2017-08-25 03:53:57 +0800 |
---|---|---|
committer | Koop Mast <kwm@rainbow-runner.nl> | 2018-02-04 05:25:38 +0800 |
commit | a1072c774370b952ca0b7745cf06c46acbef8b32 (patch) | |
tree | 8bbc662aca0cba494a344354fee8ecff6e732075 /print | |
parent | 279b10db634ea4c279bb16b2065eb69f45a41837 (diff) | |
download | freebsd-ports-gnome-a1072c774370b952ca0b7745cf06c46acbef8b32.tar.gz freebsd-ports-gnome-a1072c774370b952ca0b7745cf06c46acbef8b32.tar.zst freebsd-ports-gnome-a1072c774370b952ca0b7745cf06c46acbef8b32.zip |
* Bump revision, fixed manpages location
* Added desktop-file-utils
* Max python version specified
* Cleanup Makefile
PR: 221457
Submitted by: Yuri Victorovich
Reviewed by: lifanov (mentor), matthew (mentor)
Approved by: lifanov (mentor), <martin.dieringer@gmx.de> (maintainer)
Differential Revision: https://reviews.freebsd.org/D12096
Diffstat (limited to 'print')
-rw-r--r-- | print/frescobaldi/Makefile | 27 |
1 files changed, 17 insertions, 10 deletions
diff --git a/print/frescobaldi/Makefile b/print/frescobaldi/Makefile index fcddbe752393..e2c50fa49da6 100644 --- a/print/frescobaldi/Makefile +++ b/print/frescobaldi/Makefile @@ -2,9 +2,9 @@ # $FreeBSD$ PORTNAME= frescobaldi -PORTVERSION= 2.20.0 DISTVERSIONPREFIX= v -PORTREVISION= 1 +DISTVERSION= 2.20.0 +PORTREVISION= 2 CATEGORIES= print kde MAINTAINER= martin.dieringer@gmx.de @@ -16,17 +16,24 @@ LICENSE_FILE= ${WRKSRC}/COPYING RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}poppler-qt4>=0:graphics/py-poppler-qt4 \ ${PYTHON_PKGNAMEPREFIX}python-ly>=0:print/py-python-ly -OPTIONS_DEFINE= LILYPOND -LILYPOND_DESC= Use unstable LilyPond (lilypond-devel) -LILYPOND_RUN_DEPENDS= lilypond:print/lilypond-devel -LILYPOND_RUN_DEPENDS_OFF= lilypond:print/lilypond - +USES= gettext kde:4 python:-3.4 desktop-file-utils USE_GITHUB= yes GH_ACCOUNT= wbsoft - -USES= gettext kde:4 python -INSTALLS_ICONS= yes USE_KDE= kdelibs pykde4_build pykde4_run USE_PYTHON= distutils autoplist +INSTALLS_ICONS= yes +NO_ARCH= yes + +OPTIONS_DEFINE= LILYPOND + +LILYPOND_DESC= Use unstable LilyPond (lilypond-devel) + +LILYPOND_RUN_DEPENDS= lilypond:print/lilypond-devel +LILYPOND_RUN_DEPENDS_OFF= lilypond:print/lilypond + +post-patch: + @${REINPLACE_CMD} -e 's|'share/man/man1'|'man/man1'|' \ + ${WRKSRC}/setup.py + .include <bsd.port.mk> |