pkgsrc-WIP-changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
mtpaint-git: Import mtpaint-3.50.09 (dev. version) as wip/mtpaint-git
Module Name: pkgsrc-wip
Committed By: adr <adr%sdf.org@localhost>
Pushed By: adr
Date: Sat Oct 15 17:21:34 2022 +0100
Changeset: fad617cf3459996e9024de006bf994adfda1ad17
Modified Files:
Makefile
Added Files:
mtpaint-git/DESCR
mtpaint-git/Makefile
mtpaint-git/PLIST
mtpaint-git/distinfo
Log Message:
mtpaint-git: Import mtpaint-3.50.09 (dev. version) as wip/mtpaint-git
mtPaint NEWS
------------
Here is a summary of the main changes in this release (see handbook for full details):
3.51 2021-??-??
* Kabyle translation added by Yacine Bouklif
* Czech translation updated by Pavel Fric
* Slovak translation updated by Jozef Riha
* Spanish translation updated by Adolfo Jayme
* Tagalog translation updated by Anjelo delCarmen
* Environment variable MTPAINT_INIT to hold a script to be run at initializing the GUI
* Environment variable MTPAINT_INI to use a nondefault user settings file
* Animated WebP files now can be loaded into layers, or exploded into frames
* Animated PNG (APNG) files now can be loaded into layers, or exploded into frames
* GIF file format support now is builtin (does not use giflib anymore)
* GIF loader made yet more tolerant to malformed GIF files
* ICC colour profiles embedded in GIF and WebP images now can be applied on load
* BMP loader made more tolerant to malformed BMP files
* Better support for OS/2 BMP varieties
* Counting used colours and exact conversion to indexed now are 9-19 times faster
* Multithreaded decompression enabled for OpenJPEG 2.2+ in Windows version too
* Support for multithreaded compression in OpenJPEG 2.4 added
* Support for compiling with libtiff 3 restored
* Support for compiling with gcc builds (mis)configured with --with-gcc-major-version-only added
* BUGFIX - RGB clipboard when used in Map effect now is padded with black if too small, as it should
* BUGFIX - Gradient editor now displays correct overlay colours for utility channels again
* BUGFIX - Saved GIF files are now properly labeled GIF89 if transparent and GIF87 if not
* BUGFIX - GIF files without any image blocks now properly fail to load (instead of producing a 0x0 image)
* BUGFIX - Composited GIF animation frames that use more than 256 colours now do not come out with wrong colours in certain cases
* BUGFIX - Composited GIF animation frames now do not come out wrong in certain cases (after restore to previous that follows restore to background)
* BUGFIX - Exploding, or loading into layers, GIF animation files with screen size and/or frame position outside canvas size limit no longer causes crash
* BUGFIX - When first frame of GIF animation is loaded, ".000" is added to the filename, as it should be
* BUGFIX - When loading animation, raw/composited/nonzero-delay selection now works correctly again
* BUGFIX - Loading certain broken BMP files no longer causes crash
* BUGFIX - Ctrl+N and Ctrl+P keys now work, or do nothing, properly when focus is on a list in GTK+2/3 mode
* BUGFIX - Problem with some scrollable areas in GTK+ 3.22 and later being smaller than they should be is now eliminated
To see a diff of this commit:
https://wip.pkgsrc.org/cgi-bin/gitweb.cgi?p=pkgsrc-wip.git;a=commitdiff;h=fad617cf3459996e9024de006bf994adfda1ad17
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
diffstat:
Makefile | 1 +
mtpaint-git/DESCR | 6 ++++++
mtpaint-git/Makefile | 31 +++++++++++++++++++++++++++++++
mtpaint-git/PLIST | 25 +++++++++++++++++++++++++
mtpaint-git/distinfo | 5 +++++
5 files changed, 68 insertions(+)
diffs:
diff --git a/Makefile b/Makefile
index c41513f140..45e56ee2a0 100644
--- a/Makefile
+++ b/Makefile
@@ -2510,6 +2510,7 @@ SUBDIR+= mtdev
SUBDIR+= mtf
SUBDIR+= mtop
SUBDIR+= mtpaint
+SUBDIR+= mtpaint-git
SUBDIR+= mtpfs
SUBDIR+= mtr-current
SUBDIR+= mtr-graph
diff --git a/mtpaint-git/DESCR b/mtpaint-git/DESCR
new file mode 100644
index 0000000000..ff15691bb2
--- /dev/null
+++ b/mtpaint-git/DESCR
@@ -0,0 +1,6 @@
+mtPaint is a GTK based painting program designed for creating icons
+and pixel based artwork. It can edit indexed palette or 24 bit RGB
+images and offers basic painting and palette manipulation tools.
+It can handle PNG, JPEG, GIF, TIFF, BMP, XPM, and XBM files.
+
+This is a package of the development version.
diff --git a/mtpaint-git/Makefile b/mtpaint-git/Makefile
new file mode 100644
index 0000000000..6615ae6b69
--- /dev/null
+++ b/mtpaint-git/Makefile
@@ -0,0 +1,31 @@
+# $NetBSD: Makefile,v 1.6 2014/05/31 15:57:20 thomasklausner Exp $
+#
+
+DISTNAME= mtpaint-3.50.09
+MASTER_SITES= ${MASTER_SITE_GITHUB:=wjaguar/}
+GITHUB_TAG= 199472ad6a4ecee6c8583fb5a504a2e99712b4fc
+WRKSRC= ${WRKDIR}/mtPaint-${GITHUB_TAG}
+CATEGORIES= graphics
+
+MAINTAINER= pkgsrc-users%NetBSD.org@localhost
+HOMEPAGE= http://mtpaint.sourceforge.net/
+COMMENT= Painting program and photo editor
+LICENSE= gnu-gpl-v2
+
+HAS_CONFIGURE= yes
+CONFIGURE_ARGS+= --prefix=${PREFIX} --bindir=${PREFIX}/bin
+CONFIGURE_ARGS+= --mandir=${PREFIX}/${PKGMANDIR}
+CONFIGURE_ARGS+= cflags gtk3 jpeg jp2v2 webp intl tiff man
+USE_TOOLS+= gmake pkg-config
+
+BUILD_DEPENDS+= glib2-[0-9]*:../../devel/glib2
+.include "../../sysutils/desktop-file-utils/desktopdb.mk"
+.include "../../graphics/freetype2/buildlink3.mk"
+.include "../../graphics/giflib/buildlink3.mk"
+.include "../../graphics/lcms2/buildlink3.mk"
+.include "../../graphics/libwebp/buildlink3.mk"
+.include "../../graphics/openjpeg/buildlink3.mk"
+.include "../../graphics/tiff/buildlink3.mk"
+.include "../../mk/jpeg.buildlink3.mk"
+.include "../../x11/gtk3/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/mtpaint-git/PLIST b/mtpaint-git/PLIST
new file mode 100644
index 0000000000..4e6d1bc3ac
--- /dev/null
+++ b/mtpaint-git/PLIST
@@ -0,0 +1,25 @@
+@comment $NetBSD$
+bin/mtpaint
+man/man1/mtpaint.1
+share/applications/mtpaint.desktop
+share/locale/cs/LC_MESSAGES/mtpaint.mo
+share/locale/de/LC_MESSAGES/mtpaint.mo
+share/locale/es/LC_MESSAGES/mtpaint.mo
+share/locale/fr/LC_MESSAGES/mtpaint.mo
+share/locale/gl/LC_MESSAGES/mtpaint.mo
+share/locale/hu/LC_MESSAGES/mtpaint.mo
+share/locale/it/LC_MESSAGES/mtpaint.mo
+share/locale/ja/LC_MESSAGES/mtpaint.mo
+share/locale/kab/LC_MESSAGES/mtpaint.mo
+share/locale/nl/LC_MESSAGES/mtpaint.mo
+share/locale/pl/LC_MESSAGES/mtpaint.mo
+share/locale/pt/LC_MESSAGES/mtpaint.mo
+share/locale/pt_BR/LC_MESSAGES/mtpaint.mo
+share/locale/ru/LC_MESSAGES/mtpaint.mo
+share/locale/sk/LC_MESSAGES/mtpaint.mo
+share/locale/sv/LC_MESSAGES/mtpaint.mo
+share/locale/tl/LC_MESSAGES/mtpaint.mo
+share/locale/tr/LC_MESSAGES/mtpaint.mo
+share/locale/zh_CN/LC_MESSAGES/mtpaint.mo
+share/locale/zh_TW/LC_MESSAGES/mtpaint.mo
+share/pixmaps/mtpaint.png
diff --git a/mtpaint-git/distinfo b/mtpaint-git/distinfo
new file mode 100644
index 0000000000..204fb98d24
--- /dev/null
+++ b/mtpaint-git/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2012/05/22 02:20:47 jeremy-c-reed Exp $
+
+BLAKE2s (mtpaint-3.50.09-199472ad6a4ecee6c8583fb5a504a2e99712b4fc.tar.gz) = 3f65d5de72567533f7fda26cdf3ba1699c4e3e44ea43804de5699daf5b1dc1a1
+SHA512 (mtpaint-3.50.09-199472ad6a4ecee6c8583fb5a504a2e99712b4fc.tar.gz) = f82dcc072eab6330e2db0f22f3ec39ff94c2d588a2429fa8d5a03dd7ad8b29580607f7e16ff1033686e73595ff113a1635d47df3928d64c778d2bf54ae7245b7
+Size (mtpaint-3.50.09-199472ad6a4ecee6c8583fb5a504a2e99712b4fc.tar.gz) = 1206348 bytes
Home |
Main Index |
Thread Index |
Old Index