diff options
author | joerg <joerg@pkgsrc.org> | 2006-06-08 15:20:20 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-06-08 15:20:20 +0000 |
commit | 802ebd80d60b0c5bb170c6e966df99600c0162f9 (patch) | |
tree | fba4e941c4c0684341739f033385e5f91248f889 /sysutils | |
parent | 9f330148b33b955c52f445a31b04915d5326df97 (diff) | |
download | pkgsrc-802ebd80d60b0c5bb170c6e966df99600c0162f9.tar.gz |
Fix errno. Uses C++ and msgfmt.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/xnc/Makefile | 4 | ||||
-rw-r--r-- | sysutils/xnc/distinfo | 3 | ||||
-rw-r--r-- | sysutils/xnc/patches/patch-ab | 13 |
3 files changed, 18 insertions, 2 deletions
diff --git a/sysutils/xnc/Makefile b/sysutils/xnc/Makefile index c83d8950192..460a2f7644e 100644 --- a/sysutils/xnc/Makefile +++ b/sysutils/xnc/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2006/04/17 13:46:49 wiz Exp $ +# $NetBSD: Makefile,v 1.23 2006/06/08 15:20:20 joerg Exp $ DISTNAME= xnc-5.0.4.src PKGNAME= xnc-5.0.4 @@ -12,7 +12,9 @@ COMMENT= File manager for X Window WRKSRC= ${WRKDIR}/${PKGNAME_NOREV} USE_DIRS+= xdg-1.1 +USE_LANGUAGES= c c++ USE_LIBTOOL= yes +USE_TOOLS+= msgfmt GNU_CONFIGURE= yes .include "../../graphics/tiff/buildlink3.mk" diff --git a/sysutils/xnc/distinfo b/sysutils/xnc/distinfo index 8ad76b9f730..d420fc43b78 100644 --- a/sysutils/xnc/distinfo +++ b/sysutils/xnc/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.6 2005/02/24 13:41:00 agc Exp $ +$NetBSD: distinfo,v 1.7 2006/06/08 15:20:20 joerg Exp $ SHA1 (xnc-5.0.4.src.tar.gz) = 4673ba128f4df88342bfd4968a2427e894f6f3cb RMD160 (xnc-5.0.4.src.tar.gz) = 46366a75eca41f10f68ae7d4ad95b76ed4d576e2 Size (xnc-5.0.4.src.tar.gz) = 2130633 bytes SHA1 (patch-aa) = 2da27a17e9b5c114b9ff930c38f8ec04b7221abc +SHA1 (patch-ab) = 2ec2bbbc1eb542527c5e45756a10e91337b7719d SHA1 (patch-ak) = 8174f9791016fbaa179efbefa4971423677f7652 SHA1 (patch-am) = 5522a4a41bf5e0512f38017c28300cc9529c9c23 diff --git a/sysutils/xnc/patches/patch-ab b/sysutils/xnc/patches/patch-ab new file mode 100644 index 00000000000..fb386fdbba5 --- /dev/null +++ b/sysutils/xnc/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.4 2006/06/08 15:20:20 joerg Exp $ + +--- src/lib/filedir/file.h.orig 2006-06-08 14:58:59.000000000 +0000 ++++ src/lib/filedir/file.h +@@ -106,8 +106,6 @@ extern unsigned long signextend _ + + + +-extern int errno; /* Some unixes don't define this.. */ +- + extern char *progname; /* the program name */ + extern char *magicfile; /* name of the magic file */ + extern int lineno; /* current line number in magic file */ |