diff options
author | antoine <antoine@FreeBSD.org> | 2018-02-19 19:10:43 +0800 |
---|---|---|
committer | antoine <antoine@FreeBSD.org> | 2018-02-19 19:10:43 +0800 |
commit | 16a04e9b881e61b48e43444a26db1c5e401d7efc (patch) | |
tree | 94eaef37ab07d82e499ae4cafabe202ea2ed0525 /graphics/inkscape | |
parent | a7c90a608e4fee40a557fa793e68d2e26c67c1ed (diff) | |
download | freebsd-ports-gnome-16a04e9b881e61b48e43444a26db1c5e401d7efc.tar.gz freebsd-ports-gnome-16a04e9b881e61b48e43444a26db1c5e401d7efc.tar.zst freebsd-ports-gnome-16a04e9b881e61b48e43444a26db1c5e401d7efc.zip |
Reduce dependency on the python2 metaport
PR: 225752
Submitted by: Yasuhiro KIMURA
Diffstat (limited to 'graphics/inkscape')
-rw-r--r-- | graphics/inkscape/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/graphics/inkscape/Makefile b/graphics/inkscape/Makefile index 7a4d70e576d1..ee086081d87b 100644 --- a/graphics/inkscape/Makefile +++ b/graphics/inkscape/Makefile @@ -3,7 +3,7 @@ PORTNAME= inkscape PORTVERSION= 0.92.2 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= graphics gnome MASTER_SITES= https://launchpadlibrarian.net/332184472/ \ https://inkscape.org/en/gallery/item/11254/ \ @@ -33,7 +33,7 @@ LIB_DEPENDS= libpopt.so:devel/popt \ USE_GNOME= gtkmm24 libxml2 libxslt USES= compiler:c++11-lib cmake cpe desktop-file-utils gnome \ - iconv:wchar_t jpeg pathfix pkgconfig python:2,build \ + iconv:wchar_t jpeg pathfix pkgconfig python:2.7,build \ shebangfix tar:bzip2 USE_XORG= x11 INSTALLS_ICONS= yes @@ -81,7 +81,7 @@ USES+= gettext #NLS_USES= gettext post-patch: - @${REINPLACE_CMD} -e 's|COMMAND python|COMMAND python2|g' \ + @${REINPLACE_CMD} -e 's|COMMAND python|COMMAND ${PYTHON_VERSION}|g' \ ${WRKSRC}/share/*/CMakeLists.txt .include <bsd.port.mk> |