Import of pkgsrc-2013Q2

This commit is contained in:
2013-09-26 17:14:40 +02:00
commit 785076ae39
74991 changed files with 4380255 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
$NetBSD: patch-aa,v 1.1.1.1 2008/03/08 00:46:23 reed Exp $
--- Makefile.orig 2007-02-19 11:15:10.000000000 -0600
+++ Makefile 2008-03-07 14:10:01.000000000 -0600
@@ -94,7 +94,8 @@
SBIN_DIR=/sbin
CFG_DIR=/etc
BOOT_DIR=/boot
-USRSBIN_DIR=/usr/sbin
+USRSBIN_DIR=/sbin
+MAN_DIR=/${PKGMANDIR}
BUILTIN=1
PCONFIG=$(KVER) $(HDM) $(LILO) `( if [ -r $$ROOT/etc/lilo.defines ]; then \

View File

@@ -0,0 +1,15 @@
$NetBSD: patch-ab,v 1.1.1.1 2008/03/08 00:46:23 reed Exp $
--- config.h.orig Sun Jun 9 19:17:32 2002
+++ config.h Fri Nov 1 20:38:35 2002
@@ -27,8 +27,8 @@
#define DFL_CHAIN LILO_DIR "/chain.b" /* default chain loader */
#define DFL_MBR LILO_DIR "/mbr.b" /* default MBR */
#else
-#define CFG_DIR "/etc" /* location of configuration files */
-#define BOOT_DIR "/boot" /* location of boot files */
+#define CFG_DIR "@@PKG_SYSCONFDIR@@" /* location of configuration files */
+#define BOOT_DIR "@@PREFIX@@/boot" /* location of boot files */
#define BACKUP_DIR BOOT_DIR /* boot sector and partition table backups */
#define DFL_CONFIG CFG_DIR "/lilo.conf"/* default configuration file */
#define DFL_DISKTAB CFG_DIR "/disktab" /* LILO's disk parameter table */

View File

@@ -0,0 +1,16 @@
$NetBSD: patch-ac,v 1.1.1.1 2008/03/08 00:46:23 reed Exp $
--- geometry.c.orig 2003-10-10 14:43:13.000000000 -0700
+++ geometry.c
@@ -99,6 +99,11 @@ struct evms_version_t {
#define HDIO_GETGEO HDIO_REQ
#endif
+/* Linux 2.6 compatibility */
+#undef _IOR
+#undef _IOWR
+#define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
+#define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
typedef struct _st_buf {
struct _st_buf *next;