Import of pkgsrc-2015Q2

This commit is contained in:
2016-01-21 23:41:46 +01:00
committed by sambuc
parent 4af1cdf7a9
commit f641581404
15409 changed files with 267784 additions and 121624 deletions
+2 -3
View File
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.52 2014/10/09 14:05:51 wiz Exp $
# $NetBSD: Makefile,v 1.53 2015/04/07 22:08:36 hiramatsu Exp $
DISTNAME= sharutils-4.13.5
DISTNAME= sharutils-4.15
PKGNAME= g${DISTNAME}
CATEGORIES= archivers
MASTER_SITES= ${MASTER_SITE_GNU:=sharutils/}
@@ -19,7 +19,6 @@ INSTALL_TARGET= install install-man
INFO_FILES= yes
USE_TOOLS+= makeinfo msgfmt sh:run
CONFIGURE_ARGS+= --disable-uucode
CONFIGURE_ENV+= SH=${TOOLS_SH}
CONFIGURE_ARGS+= --program-prefix=g
+8 -1
View File
@@ -1,13 +1,19 @@
@comment $NetBSD: PLIST,v 1.11 2013/07/21 09:03:19 shattered Exp $
@comment $NetBSD: PLIST,v 1.12 2015/04/07 22:08:36 hiramatsu Exp $
bin/gshar
bin/gunshar
bin/guudecode
bin/guuencode
gnu/bin/shar
gnu/bin/unshar
gnu/man/man1/shar.1
gnu/man/man1/unshar.1
info/sharutils.info
lib/charset.alias
man/man1/gshar.1
man/man1/gunshar.1
man/man1/guudecode.1
man/man1/guuencode.1
man/man5/guuencode.5
share/locale/bg/LC_MESSAGES/sharutils.mo
share/locale/ca/LC_MESSAGES/sharutils.mo
share/locale/cs/LC_MESSAGES/sharutils.mo
@@ -27,6 +33,7 @@ share/locale/it/LC_MESSAGES/sharutils.mo
share/locale/ja/LC_MESSAGES/sharutils.mo
share/locale/nl/LC_MESSAGES/sharutils.mo
share/locale/pl/LC_MESSAGES/sharutils.mo
share/locale/pt_BR/LC_MESSAGES/sharutils.mo
share/locale/ru/LC_MESSAGES/sharutils.mo
share/locale/sr/LC_MESSAGES/sharutils.mo
share/locale/sv/LC_MESSAGES/sharutils.mo
+10 -4
View File
@@ -1,5 +1,11 @@
$NetBSD: distinfo,v 1.19 2014/09/13 10:53:04 shattered Exp $
$NetBSD: distinfo,v 1.22 2015/06/08 23:13:52 joerg Exp $
SHA1 (sharutils-4.13.5.tar.gz) = 60868635dff4c36f6ccc7be89b53a591938fa3b2
RMD160 (sharutils-4.13.5.tar.gz) = 9f59fca8d3ec5e98ba61b7a330fa90a1d02f997d
Size (sharutils-4.13.5.tar.gz) = 2045022 bytes
SHA1 (sharutils-4.15.tar.gz) = a073d1912e537a53cabab210ca869adfd907f6f6
RMD160 (sharutils-4.15.tar.gz) = fd8b1ebe41b1df398eef53513e2e5b5b53e8bbac
Size (sharutils-4.15.tar.gz) = 2196398 bytes
SHA1 (patch-lib_fseeko.c) = 9308258bebbabc60a0203fd3baa054758ce60b02
SHA1 (patch-libopts_libopts.c) = da5b86c5ba4dfdae5108476e46c1ed5e47a4254e
SHA1 (patch-src_shar-opts.c) = eabc6a22adb102fc88b42c4479ee4030435d07dd
SHA1 (patch-src_unshar-opts.c) = 7c34db513400d5f818be396a6bdbd2ff8d8bb77b
SHA1 (patch-src_uudecode-opts.c) = d560a91b977d3c02627be22073b1dc1810a9b3cb
SHA1 (patch-src_uuencode-opts.c) = 0906d8b3d9ac10d529b2a35aadce1fb09d3c60b7
@@ -0,0 +1,15 @@
$NetBSD: patch-lib_fseeko.c,v 1.1 2015/04/07 22:08:36 hiramatsu Exp $
Definition of FILE struct is changed on NetBSD 6.
--- lib/fseeko.c.orig 2015-04-05 22:42:44.000000000 +0900
+++ lib/fseeko.c 2015-04-05 22:42:52.000000000 +0900
@@ -125,7 +125,7 @@
fp->_flags &= ~_IO_EOF_SEEN;
fp->_offset = pos;
#elif defined __sferror || defined __DragonFly__ /* FreeBSD, NetBSD, OpenBSD, DragonFly, Mac OS X, Cygwin */
-# if defined __CYGWIN__
+# if defined __CYGWIN__ || (defined __NetBSD__ && __NetBSD_Version__ >= 600000000)
/* fp_->_offset is typed as an integer. */
fp_->_offset = pos;
# else
@@ -0,0 +1,14 @@
$NetBSD: patch-libopts_libopts.c,v 1.1 2015/06/08 23:13:52 joerg Exp $
--- libopts/libopts.c.orig 2015-06-08 20:10:35.000000000 +0000
+++ libopts/libopts.c
@@ -1,3 +1,9 @@
+#include "config.h"
+#if ENABLE_NLS
+#ifdef HAVE_DCGETTEXT
+# include <gettext.h>
+#endif
+#endif
#define AUTOOPTS_INTERNAL 1
#include "autoopts/project.h"
#define LOCAL static
@@ -0,0 +1,17 @@
$NetBSD: patch-src_shar-opts.c,v 1.1 2015/06/08 23:13:52 joerg Exp $
--- src/shar-opts.c.orig 2015-06-08 20:10:51.000000000 +0000
+++ src/shar-opts.c
@@ -37,6 +37,12 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+#if ENABLE_NLS
+#ifdef HAVE_DCGETTEXT
+# include <gettext.h>
+#endif
+#endif
#ifndef __doxygen__
#define OPTION_CODE_COMPILE 1
@@ -0,0 +1,17 @@
$NetBSD: patch-src_unshar-opts.c,v 1.1 2015/06/08 23:13:52 joerg Exp $
--- src/unshar-opts.c.orig 2015-06-08 20:11:05.000000000 +0000
+++ src/unshar-opts.c
@@ -37,6 +37,12 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+#if ENABLE_NLS
+#ifdef HAVE_DCGETTEXT
+# include <gettext.h>
+#endif
+#endif
#ifndef __doxygen__
#define OPTION_CODE_COMPILE 1
@@ -0,0 +1,17 @@
$NetBSD: patch-src_uudecode-opts.c,v 1.1 2015/06/08 23:13:52 joerg Exp $
--- src/uudecode-opts.c.orig 2015-06-08 20:12:04.000000000 +0000
+++ src/uudecode-opts.c
@@ -37,6 +37,12 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+#if ENABLE_NLS
+#ifdef HAVE_DCGETTEXT
+# include <gettext.h>
+#endif
+#endif
#ifndef __doxygen__
#define OPTION_CODE_COMPILE 1
@@ -0,0 +1,17 @@
$NetBSD: patch-src_uuencode-opts.c,v 1.1 2015/06/08 23:13:52 joerg Exp $
--- src/uuencode-opts.c.orig 2015-06-08 20:12:11.000000000 +0000
+++ src/uuencode-opts.c
@@ -37,6 +37,12 @@
* You should have received a copy of the GNU General Public License along
* with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+#include "config.h"
+#if ENABLE_NLS
+#ifdef HAVE_DCGETTEXT
+# include <gettext.h>
+#endif
+#endif
#ifndef __doxygen__
#define OPTION_CODE_COMPILE 1