summaryrefslogtreecommitdiff
path: root/graphics/xpaint
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2005-01-31 09:24:07 +0000
committeradam <adam@pkgsrc.org>2005-01-31 09:24:07 +0000
commit245c8500c279db4e01ca03ef2c04cfa0d58207f4 (patch)
treea8e43cb75c3d2368653e1340bfff91a8f42c6f02 /graphics/xpaint
parentc228a55b322e8640ee24d041392143a46e716501 (diff)
downloadpkgsrc-245c8500c279db4e01ca03ef2c04cfa0d58207f4.tar.gz
Changes 2.7.3:
* Incorporated OpenVMS port by Jouk Jansen <joukj@hrem.stm.tudelft.nl> http://nchrem.tnw.tudelft.nl/openvms/software2.html * PNG is now the default image format * Corrected long standing bug in StdSnapshotCallback() in graphic.c * Added -clipboard option which loads files from command line into clipboard.
Diffstat (limited to 'graphics/xpaint')
-rw-r--r--graphics/xpaint/Makefile12
-rw-r--r--graphics/xpaint/distinfo8
-rw-r--r--graphics/xpaint/patches/patch-aa10
3 files changed, 15 insertions, 15 deletions
diff --git a/graphics/xpaint/Makefile b/graphics/xpaint/Makefile
index edf1692576b..eb741ec7939 100644
--- a/graphics/xpaint/Makefile
+++ b/graphics/xpaint/Makefile
@@ -1,7 +1,6 @@
-# $NetBSD: Makefile,v 1.43 2004/12/28 23:18:20 reed Exp $
+# $NetBSD: Makefile,v 1.44 2005/01/31 09:24:07 adam Exp $
-DISTNAME= xpaint-2.7.2
-PKGREVISION= 1
+DISTNAME= xpaint-2.7.3
CATEGORIES= graphics x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=sf-xpaint/}
EXTRACT_SUFX= .tar.bz2
@@ -10,9 +9,9 @@ MAINTAINER= hubertf@NetBSD.org
HOMEPAGE= http://sf-xpaint.sourceforge.net/
COMMENT= Simple paint program
-USE_BUILDLINK3= YES
-USE_GNU_TOOLS+= make
-USE_IMAKE= YES
+USE_BUILDLINK3= yes
+USE_GNU_TOOLS+= make
+USE_IMAKE= yes
BUILD_TARGET= xaw95static
MAKE_ENV+= XMKMF="${XMKMF}"
@@ -28,4 +27,5 @@ SUBST_SED.foo= -e "s|\$${LOCALBASE}|${LOCALBASE}|g" \
.include "../../graphics/png/buildlink3.mk"
.include "../../graphics/tiff/buildlink3.mk"
.include "../../graphics/xpm/buildlink3.mk"
+
.include "../../mk/bsd.pkg.mk"
diff --git a/graphics/xpaint/distinfo b/graphics/xpaint/distinfo
index c20276a5867..c007231ce3d 100644
--- a/graphics/xpaint/distinfo
+++ b/graphics/xpaint/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.10 2004/11/03 15:54:31 adam Exp $
+$NetBSD: distinfo,v 1.11 2005/01/31 09:24:07 adam Exp $
-SHA1 (xpaint-2.7.2.tar.bz2) = 200f1a02b8d4917f6d0ca212caecc1ffa7194c21
-Size (xpaint-2.7.2.tar.bz2) = 609645 bytes
-SHA1 (patch-aa) = 1c1c2cb9d4cf99d46f6ab8e4247e226d5371d489
+SHA1 (xpaint-2.7.3.tar.bz2) = a8c19e59d2093df7d23638b85a45e058957be69e
+Size (xpaint-2.7.3.tar.bz2) = 615007 bytes
+SHA1 (patch-aa) = 87ddea42b6497f0c38a56f2915b9896d2858b63d
SHA1 (patch-ab) = c10aa13fc4c02a6251354360585436d6075981bc
SHA1 (patch-ac) = e98edf325d9ebe167022b7985b8487f0a08002e6
SHA1 (patch-ae) = d7d903409ae8fe34ca7c64caac85d2211292134d
diff --git a/graphics/xpaint/patches/patch-aa b/graphics/xpaint/patches/patch-aa
index 3d402bd1f89..2519888d7db 100644
--- a/graphics/xpaint/patches/patch-aa
+++ b/graphics/xpaint/patches/patch-aa
@@ -1,13 +1,13 @@
-$NetBSD: patch-aa,v 1.4 2001/03/30 21:44:49 hubertf Exp $
+$NetBSD: patch-aa,v 1.5 2005/01/31 09:24:07 adam Exp $
---- misc.h.orig Mon Oct 2 22:56:30 2000
+--- misc.h.orig 2004-09-22 14:20:24.000000000 +0000
+++ misc.h
-@@ -23,7 +23,7 @@
+@@ -24,7 +24,7 @@
long random(void);
#endif
--#if !defined(linux) & !defined(__EMX__) & !defined(__FreeBSD__) & !defined(__CYGWIN__)
-+#if !defined(linux) & !defined(__EMX__) & !defined(__FreeBSD__) & !defined(__CYGWIN__) & !defined(__NetBSD__)
+-#if !defined(__VMS) & !defined(linux) & !defined(__EMX__) & !defined(__FreeBSD__) & !defined(__CYGWIN__)
++#if !defined(__VMS) & !defined(linux) & !defined(__EMX__) & !defined(__FreeBSD__) & !defined(__CYGWIN__) & !defined(__NetBSD__)
#if defined(BSD4_4) || defined(HPArchitecture) || defined(SGIArchitecture) || defined(_AIX) || defined(_SCO_DS)
void srandom(unsigned int);
#else