maintenance update to 2.7.8.1
This commit is contained in:
parent
38d24d9f1e
commit
432a448e72
@ -1,9 +1,8 @@
|
|||||||
# $OpenBSD: Makefile,v 1.36 2005/09/05 13:53:45 espie Exp $
|
# $OpenBSD: Makefile,v 1.37 2005/10/31 23:24:19 naddy Exp $
|
||||||
|
|
||||||
COMMENT= "simple paint program"
|
COMMENT= "simple paint program"
|
||||||
|
|
||||||
DISTNAME= xpaint-2.7.7
|
DISTNAME= xpaint-2.7.8.1
|
||||||
PKGNAME= ${DISTNAME}p0
|
|
||||||
CATEGORIES= graphics x11
|
CATEGORIES= graphics x11
|
||||||
|
|
||||||
HOMEPAGE= http://sf-xpaint.sourceforge.net/
|
HOMEPAGE= http://sf-xpaint.sourceforge.net/
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
MD5 (xpaint-2.7.7.tar.bz2) = e6086b87adf5bac8e6d207248b760eff
|
MD5 (xpaint-2.7.8.1.tar.bz2) = e608680bd362531231af521f0df377ae
|
||||||
RMD160 (xpaint-2.7.7.tar.bz2) = 0edecaaebc04c6adfc11d5883cfafe9ebd7066f6
|
RMD160 (xpaint-2.7.8.1.tar.bz2) = 8efca6ff71df8635b8ed50e0c6db2b81f2e068cf
|
||||||
SHA1 (xpaint-2.7.7.tar.bz2) = c7e170af9a75098d2763346268726d33e0a5713b
|
SHA1 (xpaint-2.7.8.1.tar.bz2) = d225254cc15cbc166c392b112b57104657a33aaa
|
||||||
SIZE (xpaint-2.7.7.tar.bz2) = 403208
|
SIZE (xpaint-2.7.8.1.tar.bz2) = 459429
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
$OpenBSD: patch-Imakefile,v 1.1 2005/05/24 19:49:28 naddy Exp $
|
$OpenBSD: patch-Imakefile,v 1.2 2005/10/31 23:24:19 naddy Exp $
|
||||||
--- Imakefile.orig Wed Apr 27 14:59:37 2005
|
--- Imakefile.orig Fri Jun 3 14:26:03 2005
|
||||||
+++ Imakefile Tue May 24 11:39:09 2005
|
+++ Imakefile Tue Nov 1 00:16:20 2005
|
||||||
@@ -102,7 +102,7 @@ SGI_LIB = -limage
|
@@ -102,7 +102,7 @@ SGI_LIB = -limage
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -10,21 +10,16 @@ $OpenBSD: patch-Imakefile,v 1.1 2005/05/24 19:49:28 naddy Exp $
|
|||||||
|
|
||||||
SUBDIRS = rw
|
SUBDIRS = rw
|
||||||
|
|
||||||
@@ -152,7 +152,7 @@ install::
|
@@ -136,8 +136,10 @@ install::
|
||||||
|
chmod -R a+r $(DESTDIR)$(SHAREDIR)/
|
||||||
|
|
||||||
xaw::
|
xaw::
|
||||||
-$(RM) $(XAWDEPENDS)
|
- -$(RM) $(XAWDEPENDS)
|
||||||
- -$(RM) xaw_incdir ; ln -sf /usr/include/X11/Xaw xaw_incdir
|
- ./configure xaw ; make
|
||||||
+ -$(RM) xaw_incdir ; ln -sf ${X11BASE}/include/X11/Xaw xaw_incdir
|
+ -$(RM) $(XAWDEPENDS) ; ln -sf ${X11BASE}/include/X11/Xaw xaw_incdir
|
||||||
echo "XAWLIB_DEFINES = -DXAWPLAIN" > Local.xawdefs
|
+ echo "XAWLIB_DEFINES = -DXAWPLAIN" > Local.xawdefs
|
||||||
echo "SYS_LIBRARIES = XawClientLibs -lm" >> Local.xawdefs
|
+ echo "SYS_LIBRARIES = XawClientLibs -lm" >> Local.xawdefs
|
||||||
xmkmf -a ; make
|
+ xmkmf ; (cd rw ; xmkmf) ; make
|
||||||
@@ -164,7 +164,7 @@ xaw::
|
@echo ""
|
||||||
|
@echo "'xpaint' compiled with Xaw widgets (old and ugly)"
|
||||||
xaw3d::
|
@echo "You should rather use Xaw3d, neXtaw or Xaw95 !!"
|
||||||
-$(RM) $(XAWDEPENDS)
|
|
||||||
- -$(RM) xaw_incdir ; ln -sf /usr/include/X11/Xaw3d xaw_incdir
|
|
||||||
+ -$(RM) xaw_incdir ; ln -sf $(INCDIR)/X11/Xaw3d xaw_incdir
|
|
||||||
echo "XAWLIB_DEFINES = -DXAW3D" > Local.xawdefs
|
|
||||||
echo "SYS_LIBRARIES = -lXaw3d -L." >> Local.xawdefs
|
|
||||||
xmkmf ; cd rw ; xmkmf ; cd .. ; make
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
$OpenBSD: patch-fileName_c,v 1.1 2005/05/24 19:49:28 naddy Exp $
|
$OpenBSD: patch-fileName_c,v 1.2 2005/10/31 23:24:19 naddy Exp $
|
||||||
--- fileName.c.orig Mon May 23 23:12:09 2005
|
--- fileName.c.orig Wed Aug 17 14:31:56 2005
|
||||||
+++ fileName.c Mon May 23 23:13:09 2005
|
+++ fileName.c Tue Nov 1 00:03:27 2005
|
||||||
@@ -39,7 +39,7 @@
|
@@ -39,7 +39,7 @@
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sys/types.h>
|
#include <sys/types.h>
|
||||||
@ -10,7 +10,7 @@ $OpenBSD: patch-fileName_c,v 1.1 2005/05/24 19:49:28 naddy Exp $
|
|||||||
#include <dirent.h>
|
#include <dirent.h>
|
||||||
#else
|
#else
|
||||||
#include <sys/dir.h>
|
#include <sys/dir.h>
|
||||||
@@ -455,7 +455,7 @@ static void
|
@@ -461,7 +461,7 @@ static void
|
||||||
setCWD(arg_t * arg, char *dir)
|
setCWD(arg_t * arg, char *dir)
|
||||||
{
|
{
|
||||||
DIR *dirp;
|
DIR *dirp;
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
$OpenBSD: patch-rw_rwTable_c,v 1.4 2005/05/24 19:49:28 naddy Exp $
|
$OpenBSD: patch-rw_rwTable_c,v 1.5 2005/10/31 23:24:19 naddy Exp $
|
||||||
--- rw/rwTable.c.orig Mon May 23 23:02:00 2005
|
--- rw/rwTable.c.orig Wed Aug 17 15:00:25 2005
|
||||||
+++ rw/rwTable.c Mon May 23 23:03:31 2005
|
+++ rw/rwTable.c Tue Nov 1 00:03:27 2005
|
||||||
@@ -249,6 +249,7 @@ RWtableGetWriterList()
|
@@ -251,6 +251,7 @@ RWtableGetWriterList()
|
||||||
char *
|
char *
|
||||||
RWGetMsg()
|
RWGetMsg()
|
||||||
{
|
{
|
||||||
@ -9,7 +9,7 @@ $OpenBSD: patch-rw_rwTable_c,v 1.4 2005/05/24 19:49:28 naddy Exp $
|
|||||||
#if defined(BSD4_4)
|
#if defined(BSD4_4)
|
||||||
__const extern char *__const sys_errlist[];
|
__const extern char *__const sys_errlist[];
|
||||||
#else
|
#else
|
||||||
@@ -258,6 +259,7 @@ RWGetMsg()
|
@@ -260,6 +261,7 @@ RWGetMsg()
|
||||||
# define sys_errlist _sys_errlist
|
# define sys_errlist _sys_errlist
|
||||||
#else
|
#else
|
||||||
extern char *sys_errlist[];
|
extern char *sys_errlist[];
|
||||||
|
Loading…
Reference in New Issue
Block a user