From owner-svn-ports-head@freebsd.org Fri Mar 19 06:52:41 2021 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 0B8875B9EF8; Fri, 19 Mar 2021 06:52:41 +0000 (UTC) (envelope-from eduardo@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4F1vj46xHCz3qCw; Fri, 19 Mar 2021 06:52:40 +0000 (UTC) (envelope-from eduardo@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id E0F11106F8; Fri, 19 Mar 2021 06:52:40 +0000 (UTC) (envelope-from eduardo@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 12J6qeQi072389; Fri, 19 Mar 2021 06:52:40 GMT (envelope-from eduardo@FreeBSD.org) Received: (from eduardo@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 12J6qdqe072385; Fri, 19 Mar 2021 06:52:39 GMT (envelope-from eduardo@FreeBSD.org) Message-Id: <202103190652.12J6qdqe072385@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: eduardo set sender to eduardo@FreeBSD.org using -f From: Nuno Teixeira Date: Fri, 19 Mar 2021 06:52:39 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r568774 - in head/graphics/mtpaint: . files X-SVN-Group: ports-head X-SVN-Commit-Author: eduardo X-SVN-Commit-Paths: in head/graphics/mtpaint: . files X-SVN-Commit-Revision: 568774 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 Mar 2021 06:52:41 -0000 Author: eduardo Date: Fri Mar 19 06:52:39 2021 New Revision: 568774 URL: https://svnweb.freebsd.org/changeset/ports/568774 Log: graphics/mtpaint: update to 3.50.08 - remove USES=tar:bzip2 related to 3.40 distfile tar.bz2 - use ${PREFIX}/share/man for manual pages - turn on WEBP option by default (forgotten in last update) Changelog-like descriptions in each commit since 3.50.3 [1]. [1] https://github.com/wjaguar/mtPaint/commits/master Differential Revision: https://reviews.freebsd.org/D29321 Modified: head/graphics/mtpaint/Makefile head/graphics/mtpaint/distinfo head/graphics/mtpaint/files/patch-configure head/graphics/mtpaint/pkg-plist Modified: head/graphics/mtpaint/Makefile ============================================================================== --- head/graphics/mtpaint/Makefile Fri Mar 19 05:41:56 2021 (r568773) +++ head/graphics/mtpaint/Makefile Fri Mar 19 06:52:39 2021 (r568774) @@ -2,7 +2,7 @@ # $FreeBSD$ PORTNAME= mtpaint -PORTVERSION= 3.50.03 +PORTVERSION= 3.50.08 CATEGORIES= graphics MAINTAINER= eduardo@FreeBSD.org @@ -15,15 +15,15 @@ LIB_DEPENDS= libpng.so:graphics/png \ libtiff.so:graphics/tiff \ libfreetype.so:print/freetype2 -USES= desktop-file-utils gmake gnome iconv jpeg pkgconfig tar:bzip2 xorg +USES= desktop-file-utils gmake gnome iconv jpeg pkgconfig xorg USE_GITHUB= yes GH_ACCOUNT= wjaguar GH_PROJECT= mtPaint -GH_TAGNAME= 40bde45 +GH_TAGNAME= 4ea607e USE_GNOME= cairo gdkpixbuf2 gtk30 USE_XORG= x11 HAS_CONFIGURE= yes -CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man/man1 \ +CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${PREFIX}/share/man/man1 \ --localedir=${PREFIX}/share/locale \ asneeded gtk3 cflags ft jpeg man tiff @@ -33,7 +33,7 @@ LDFLAGS+= -L${LOCALBASE}/lib ${ICONV_LIB} PORTDOCS= NEWS README OPTIONS_DEFINE= DOCS LCMS2 NLS OPENJPEG WEBP -OPTIONS_DEFAULT= LCMS2 OPENJPEG +OPTIONS_DEFAULT= LCMS2 OPENJPEG WEBP OPTIONS_SUB= yes LCMS2_LIB_DEPENDS= liblcms2.so:graphics/lcms2 @@ -51,7 +51,7 @@ WEBP_CONFIGURE_ON= webp do-install: ${INSTALL_PROGRAM} ${WRKSRC}/src/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/doc/${PORTNAME}.1 \ - ${STAGEDIR}${MANPREFIX}/man/man1 + ${STAGEDIR}${PREFIX}/share/man/man1 ${INSTALL_DATA} ${WRKSRC}/doc/${PORTNAME}.desktop \ ${STAGEDIR}${DESKTOPDIR} ${INSTALL_DATA} ${WRKSRC}/doc/${PORTNAME}.png \ Modified: head/graphics/mtpaint/distinfo ============================================================================== --- head/graphics/mtpaint/distinfo Fri Mar 19 05:41:56 2021 (r568773) +++ head/graphics/mtpaint/distinfo Fri Mar 19 06:52:39 2021 (r568774) @@ -1,3 +1,3 @@ -TIMESTAMP = 1611508400 -SHA256 (wjaguar-mtPaint-3.50.03-40bde45_GH0.tar.gz) = ee38e0023a4c431390de5ec0ec93d8e5c16792b6143cd563ea11186d9ca60550 -SIZE (wjaguar-mtPaint-3.50.03-40bde45_GH0.tar.gz) = 1189924 +TIMESTAMP = 1616051072 +SHA256 (wjaguar-mtPaint-3.50.08-4ea607e_GH0.tar.gz) = 015a76531d4f6e2cd2742b021dd25ed0240af4ab4dc7f33e190c52f739f63317 +SIZE (wjaguar-mtPaint-3.50.08-4ea607e_GH0.tar.gz) = 1204999 Modified: head/graphics/mtpaint/files/patch-configure ============================================================================== --- head/graphics/mtpaint/files/patch-configure Fri Mar 19 05:41:56 2021 (r568773) +++ head/graphics/mtpaint/files/patch-configure Fri Mar 19 06:52:39 2021 (r568774) @@ -1,6 +1,6 @@ ---- configure.orig 2021-01-23 07:22:40 UTC +--- configure.orig 2021-03-10 19:47:48 UTC +++ configure -@@ -74,6 +74,7 @@ do +@@ -70,6 +70,7 @@ do "webp" ) NWEBP=YES;; "nowebp" ) NWEBP=NO;; "staticwebp" ) STATIC_WEBP=WebP;; @@ -8,7 +8,7 @@ "noft" ) NFT=NO;; "staticft" ) STATIC_FT=FreeType;; "lcms" ) NCMS=LittleCMS;; -@@ -523,7 +524,7 @@ else # $OPTS = CFLAGS +@@ -506,7 +507,7 @@ else # $OPTS = CFLAGS MARCH= # And leave CFLAGS alone fi @@ -17,12 +17,12 @@ # Set Windows-specific flags if [ "$OS" != "${OS#MinGW/}" ] then -@@ -856,7 +857,7 @@ General +@@ -830,7 +831,7 @@ General ------- Version $MT_V - System $OS + System $OSTYPE - Toolkit GTK+$GTK${GTK2VERSION:+.$GTK2VERSION} + Toolkit GTK+$GTK${GTKVERSION:+.$GTKVERSION} Lists GTK+$MT_LISTS File Picker $MT_FPICK Modified: head/graphics/mtpaint/pkg-plist ============================================================================== --- head/graphics/mtpaint/pkg-plist Fri Mar 19 05:41:56 2021 (r568773) +++ head/graphics/mtpaint/pkg-plist Fri Mar 19 06:52:39 2021 (r568774) @@ -1,5 +1,4 @@ bin/mtpaint -man/man1/mtpaint.1.gz share/applications/mtpaint.desktop %%NLS%%share/locale/cs/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/de/LC_MESSAGES/mtpaint.mo @@ -9,8 +8,8 @@ share/applications/mtpaint.desktop %%NLS%%share/locale/hu/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/it/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/ja/LC_MESSAGES/mtpaint.mo -%%NLS%%share/locale/nl/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/kab/LC_MESSAGES/mtpaint.mo +%%NLS%%share/locale/nl/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/pl/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/pt/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/pt_BR/LC_MESSAGES/mtpaint.mo @@ -21,4 +20,5 @@ share/applications/mtpaint.desktop %%NLS%%share/locale/tr/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/zh_CN/LC_MESSAGES/mtpaint.mo %%NLS%%share/locale/zh_TW/LC_MESSAGES/mtpaint.mo +share/man/man1/mtpaint.1.gz share/pixmaps/mtpaint.png