summaryrefslogtreecommitdiff
path: root/x11/xpaste
diff options
context:
space:
mode:
authortv <tv>2006-01-31 20:19:02 +0000
committertv <tv>2006-01-31 20:19:02 +0000
commit1bf85a33a7f0af352174332dac11865971217df5 (patch)
treeac38b597af8194f97ef08d4fd0ea67ec8fae54d6 /x11/xpaste
parentfb412398b2a8cd982d1920218452cdaea52847a6 (diff)
downloadpkgsrc-1bf85a33a7f0af352174332dac11865971217df5.tar.gz
Backport a change from 1.5.22 to 1.5.18 that fixes some issues withtv_libtool_1_5_18_tmpdirfix
temp dir creation when using relink-based finalization.
Diffstat (limited to 'x11/xpaste')
-rw-r--r--x11/xpaste/DESCR2
-rw-r--r--x11/xpaste/Makefile18
-rw-r--r--x11/xpaste/PLIST3
-rw-r--r--x11/xpaste/distinfo7
-rw-r--r--x11/xpaste/patches/patch-aa107
-rw-r--r--x11/xpaste/patches/patch-ab13
6 files changed, 0 insertions, 150 deletions
diff --git a/x11/xpaste/DESCR b/x11/xpaste/DESCR
deleted file mode 100644
index 3acd8fa7570..00000000000
--- a/x11/xpaste/DESCR
+++ /dev/null
@@ -1,2 +0,0 @@
-XPaste is a short X program which creates a window and displays the
-contents of the Primary paste buffer in that window.
diff --git a/x11/xpaste/Makefile b/x11/xpaste/Makefile
deleted file mode 100644
index 81e5b558ca5..00000000000
--- a/x11/xpaste/Makefile
+++ /dev/null
@@ -1,18 +0,0 @@
-# $NetBSD: Makefile,v 1.9 2005/04/11 21:48:16 tv Exp $
-#
-
-DISTNAME= xpaste-1.1
-PKGREVISION= 2
-CATEGORIES= x11
-MASTER_SITES= ${MASTER_SITE_XCONTRIB:=utilities/}
-EXTRACT_SUFX= .shar.gz
-
-MAINTAINER= seb@NetBSD.org
-COMMENT= Display the content of the X11 paste buffer in a window
-
-PKG_INSTALLATION_TYPES= overwrite pkgviews
-
-WRKSRC= ${WRKDIR}
-USE_IMAKE= yes
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/x11/xpaste/PLIST b/x11/xpaste/PLIST
deleted file mode 100644
index 06d0ff8d2a6..00000000000
--- a/x11/xpaste/PLIST
+++ /dev/null
@@ -1,3 +0,0 @@
-@comment $NetBSD: PLIST,v 1.2 2003/03/03 04:17:30 jschauma Exp $
-bin/xpaste
-${IMAKE_MAN_DIR}/xpaste.${IMAKE_MANNEWSUFFIX}
diff --git a/x11/xpaste/distinfo b/x11/xpaste/distinfo
deleted file mode 100644
index cf7ba2793f9..00000000000
--- a/x11/xpaste/distinfo
+++ /dev/null
@@ -1,7 +0,0 @@
-$NetBSD: distinfo,v 1.5 2005/02/23 17:36:25 wiz Exp $
-
-SHA1 (xpaste-1.1.shar.gz) = 15c022ddb3e43bc25721e9185aebe5d5ef8160a2
-RMD160 (xpaste-1.1.shar.gz) = 3e09e70047c244583ef689627be58618ed73abcf
-Size (xpaste-1.1.shar.gz) = 6144 bytes
-SHA1 (patch-aa) = 467ecb06be395db5222614beeaba6694eb44c1fc
-SHA1 (patch-ab) = ef12cd1b9a1244fa3193298b1a00783fb984ed43
diff --git a/x11/xpaste/patches/patch-aa b/x11/xpaste/patches/patch-aa
deleted file mode 100644
index fbe67855b28..00000000000
--- a/x11/xpaste/patches/patch-aa
+++ /dev/null
@@ -1,107 +0,0 @@
-$NetBSD: patch-aa,v 1.1 2003/09/29 09:20:12 seb Exp $
-
---- Xju.c.orig 2003-09-29 08:30:33.000000000 +0000
-+++ Xju.c
-@@ -5,3 +5,3 @@
- */
--#include <varargs.h>
-+#include <stdarg.h>
- #include <X11/Intrinsic.h>
-@@ -11,4 +11,3 @@ extern Widget root;
-
--void SetArgs(va_alist)
--va_dcl
-+void SetArgs(Arg **arglist, ...)
- {
-@@ -23,9 +22,6 @@ va_dcl
- unsigned i;
-- Arg **arglist;
- Cardinal *count;
-
-- va_start(argindex);
--
- /* Get first two arguments */
-- arglist = va_arg(argindex, Arg **);
-+ va_start(argindex, arglist);
- count = va_arg(argindex, Cardinal *);
-@@ -46,6 +42,5 @@ va_dcl
- /* Set new Arg list */
-- va_start(argindex);
-+ va_start(argindex, arglist);
-
- /* skip past first two arguments */
-- (void) va_arg(argindex, Arg **);
- (void) va_arg(argindex, int *);
-@@ -60,4 +55,3 @@ va_dcl
-
--Widget CreateWidget(va_alist)
--va_dcl
-+Widget CreateWidget(char *name, ...)
- {
-@@ -80,9 +74,7 @@ va_dcl
- Widget w, parent;
-- char *name;
- WidgetClass class;
-
-- va_start(argindex);
-+ va_start(argindex, name);
-
- /* Get first three arguments */
-- name = va_arg(argindex, char *);
- class = va_arg(argindex, WidgetClass);
-@@ -104,6 +96,5 @@ va_dcl
- /* Set new Arg list */
-- va_start(argindex);
-+ va_start(argindex, name);
-
- /* skip past first three arguments */
-- (void) va_arg(argindex, char *);
- (void) va_arg(argindex, WidgetClass);
-@@ -125,4 +116,3 @@ va_dcl
-
--void QueryWidget(va_alist)
--va_dcl
-+void QueryWidget(Widget w, ...)
- {
-@@ -140,8 +130,4 @@ va_dcl
- Cardinal count;
-- Widget w;
--
-- va_start(argindex);
-
-- /* Get first argument */
-- w = va_arg(argindex, Widget);
-+ va_start(argindex, w);
-
-@@ -161,6 +147,3 @@ va_dcl
- /* Set new Arg list */
-- va_start(argindex);
--
-- /* skip past first argument */
-- (void) va_arg(argindex, Widget);
-+ va_start(argindex, w);
-
-@@ -176,4 +159,3 @@ va_dcl
-
--void ConfigureWidget(va_alist)
--va_dcl
-+void ConfigureWidget(Widget w, ...)
- {
-@@ -191,8 +173,4 @@ va_dcl
- Cardinal count;
-- Widget w;
-
-- va_start(argindex);
--
-- /* Get first argument */
-- w = va_arg(argindex, Widget);
-+ va_start(argindex, w);
-
-@@ -212,6 +190,3 @@ va_dcl
- /* Set new Arg list */
-- va_start(argindex);
--
-- /* skip past first argument */
-- (void) va_arg(argindex, Widget);
-+ va_start(argindex, w);
-
diff --git a/x11/xpaste/patches/patch-ab b/x11/xpaste/patches/patch-ab
deleted file mode 100644
index cd3c288b8a6..00000000000
--- a/x11/xpaste/patches/patch-ab
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ab,v 1.1 2003/12/04 09:27:01 seb Exp $
-
---- xpaste.c.orig 2003-11-18 07:23:53.000000000 +0000
-+++ xpaste.c
-@@ -18,7 +18,7 @@ static char rcsid[] = "$Id: xpaste.c,v 1
- #include <X11/Xaw/AsciiText.h>
- #include <X11/Xaw/Form.h>
- #include <X11/Xaw/Command.h>
--#include <varargs.h>
-+#include <stdarg.h>
- #include "patchlevel.h"
-
- #ifndef WIDTHPADDING