summaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorrxg <rxg>2006-01-29 17:03:12 +0000
committerrxg <rxg>2006-01-29 17:03:12 +0000
commitbbd9d5a46f50235b81b0583339e5bc7528af9821 (patch)
tree85297cf7d7d6e4aeb2d736aade482bbf4833c2a0 /sysutils
parent65585363c617d3fcabee434923e8e790a5f21dee (diff)
downloadpkgsrc-bbd9d5a46f50235b81b0583339e5bc7528af9821.tar.gz
Change category.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/rox-archive/DESCR2
-rw-r--r--sysutils/rox-archive/Makefile39
-rw-r--r--sysutils/rox-archive/PLIST7
-rw-r--r--sysutils/rox-archive/distinfo6
-rw-r--r--sysutils/rox-archive/patches/patch-aa40
-rw-r--r--sysutils/rox-edit/DESCR7
-rw-r--r--sysutils/rox-edit/Makefile40
-rw-r--r--sysutils/rox-edit/PLIST16
-rw-r--r--sysutils/rox-edit/distinfo5
9 files changed, 0 insertions, 162 deletions
diff --git a/sysutils/rox-archive/DESCR b/sysutils/rox-archive/DESCR
deleted file mode 100644
index 223b4b6a2f2..00000000000
--- a/sysutils/rox-archive/DESCR
+++ /dev/null
@@ -1,2 +0,0 @@
-This is a simple ROX application for creating compressed tar files
-and for extracting various kinds of archive.
diff --git a/sysutils/rox-archive/Makefile b/sysutils/rox-archive/Makefile
deleted file mode 100644
index c47212d68e6..00000000000
--- a/sysutils/rox-archive/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-# $NetBSD: Makefile,v 1.14 2006/01/24 07:32:35 wiz Exp $
-#
-
-DISTNAME= Archive-0.1.2
-PKGNAME= rox-archive-0.1.2
-PKGREVISION= 3
-CATEGORIES= sysutils
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rox/}
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= rxg@NetBSD.org
-HOMEPAGE= http://rox.sourceforge.net/
-COMMENT= Simple archiver
-
-# no real libraries there
-DEPENDS+= rox-lib>=0.1.4nb1:../../sysutils/rox-lib
-
-WRKSRC= ${WRKDIR}/Archive
-DIST_SUBDIR= rox
-
-USE_TOOLS+= perl:run
-
-NO_CONFIGURE= yes
-NO_BUILD= yes
-
-APPDIR= ${PREFIX}/share/rox
-
-INSTALLATION_DIRS= share
-
-post-patch:
- ${CP} ${WRKSRC}/AppRun ${WRKSRC}/AppRun.1
- ${SED} -e s:@APPDIR@:"${APPDIR}":g < ${WRKSRC}/AppRun.1 \
- > ${WRKSRC}/AppRun
- ${RM} ${WRKSRC}/AppRun.1 ${WRKSRC}/AppRun.orig
-
-do-install:
- ${CP} -Rf ${WRKSRC} ${APPDIR}
-
-.include "../../mk/bsd.pkg.mk"
diff --git a/sysutils/rox-archive/PLIST b/sysutils/rox-archive/PLIST
deleted file mode 100644
index c396e4c305e..00000000000
--- a/sysutils/rox-archive/PLIST
+++ /dev/null
@@ -1,7 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/06/15 13:23:08 cjep Exp $
-share/rox/Archive/AppIcon.xpm
-share/rox/Archive/AppRun
-share/rox/Archive/Help/COPYING
-share/rox/Archive/Help/README
-@dirrm share/rox/Archive/Help
-@dirrm share/rox/Archive
diff --git a/sysutils/rox-archive/distinfo b/sysutils/rox-archive/distinfo
deleted file mode 100644
index 2a18b793881..00000000000
--- a/sysutils/rox-archive/distinfo
+++ /dev/null
@@ -1,6 +0,0 @@
-$NetBSD: distinfo,v 1.2 2005/02/24 13:40:56 agc Exp $
-
-SHA1 (rox/Archive-0.1.2.tgz) = 0c0e3f81faa0f18a7d2af3502757dea5e4bac3a1
-RMD160 (rox/Archive-0.1.2.tgz) = faf21d6166b34ee1d1ec9e73a9d2a905a28a8388
-Size (rox/Archive-0.1.2.tgz) = 11602 bytes
-SHA1 (patch-aa) = 2dea1b3f2950cbd8a4c41a3e806f6611cc408a04
diff --git a/sysutils/rox-archive/patches/patch-aa b/sysutils/rox-archive/patches/patch-aa
deleted file mode 100644
index ac194329b50..00000000000
--- a/sysutils/rox-archive/patches/patch-aa
+++ /dev/null
@@ -1,40 +0,0 @@
-$NetBSD: patch-aa,v 1.1.1.1 2002/06/15 13:23:08 cjep Exp $
-
---- AppRun.orig Sun Jul 9 18:22:31 2000
-+++ AppRun
-@@ -30,6 +30,8 @@
- "Drop an archive onto me and I'll extract it.";
- }
-
-+$savebox = "@APPDIR@/ROX-Lib/bin/savebox";
-+
- $path = $ARGV[0];
-
- # Convert relative paths to absolute (we may chdir() later).
-@@ -65,7 +67,7 @@
-
- chdir $dir;
- system "tar cf - \"$leaf\" | gzip -c - | " .
-- "savebox -t application/x-compressed-tar \"$leaf.tgz\"";
-+ "$savebox -t application/x-compressed-tar \"$leaf.tgz\"";
- }
-
- sub unarchive {
-@@ -154,7 +156,7 @@
- }
- else {
- die unless $extract_stdout;
-- system "$extract_stdout | savebox -t text/plain \"$found\"";
-+ system "$extract_stdout | $savebox -t text/plain \"$found\"";
- }
- } else {
- die unless $extract;
-@@ -181,7 +183,7 @@
- my $leaf = shift;
- my $dir;
-
-- chop ($dir = `savebox -d \"$leaf\"`);
-+ chop ($dir = `$savebox -d \"$leaf\"`);
-
- return $dir if $dir;
-
diff --git a/sysutils/rox-edit/DESCR b/sysutils/rox-edit/DESCR
deleted file mode 100644
index 6344b5bf16b..00000000000
--- a/sysutils/rox-edit/DESCR
+++ /dev/null
@@ -1,7 +0,0 @@
-ROX-Edit is an editor for the ROX environment.
-
-To start Edit, either click on its icon in a filer window or drag
-a file onto it.
-
-A window appears with a small tool bar and a text area showing the file.
-You can right-click on the window for a menu.
diff --git a/sysutils/rox-edit/Makefile b/sysutils/rox-edit/Makefile
deleted file mode 100644
index 5e36a50964e..00000000000
--- a/sysutils/rox-edit/Makefile
+++ /dev/null
@@ -1,40 +0,0 @@
-# $NetBSD: Makefile,v 1.17 2006/01/24 07:32:35 wiz Exp $
-#
-
-DISTNAME= Edit-0.1.2
-PKGNAME= rox-edit-0.1.2
-PKGREVISION= 6
-CATEGORIES= sysutils
-MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=rox/}
-EXTRACT_SUFX= .tgz
-
-MAINTAINER= rxg@NetBSD.org
-HOMEPAGE= http://rox.sourceforge.net/
-COMMENT= Simple text editor for ROX
-
-DEPENDS+= rox-lib>=0.1.4:../../sysutils/rox-lib
-
-WRKSRC= ${WRKDIR}/Edit
-DIST_SUBDIR= rox
-
-NO_CONFIGURE= yes
-NO_BUILD= yes
-
-PYTHON_PATCH_SCRIPTS= AppRun
-INSTALLATION_DIRS= share/rox
-
-post-patch:
- ${SED} -e s:"/usr/local/lib":"${PREFIX}/share/rox":g \
- < ${WRKSRC}/findrox.py \
- > ${WRKSRC}/findrox.py.1
- ${MV} -f ${WRKSRC}/findrox.py.1 ${WRKSRC}/findrox.py
-
-pre-install:
- ${RM} -f ${WRKSRC}/AppRun.tmp
-
-do-install:
- ${CP} -Rf ${WRKSRC} ${PREFIX}/share/rox
-
-.include "../../lang/python/application.mk"
-.include "../../x11/pygtk/buildlink3.mk"
-.include "../../mk/bsd.pkg.mk"
diff --git a/sysutils/rox-edit/PLIST b/sysutils/rox-edit/PLIST
deleted file mode 100644
index 09ecfa8f013..00000000000
--- a/sysutils/rox-edit/PLIST
+++ /dev/null
@@ -1,16 +0,0 @@
-@comment $NetBSD: PLIST,v 1.1.1.1 2002/06/01 20:11:45 cjep Exp $
-share/rox/Edit/AppIcon.xpm
-share/rox/Edit/AppInfo.xml
-share/rox/Edit/AppRun
-share/rox/Edit/EditWindow.py
-share/rox/Edit/Help/COPYING
-share/rox/Edit/Help/README
-share/rox/Edit/Options.xml
-share/rox/Edit/findrox.py
-share/rox/Edit/icons/Close.xpm
-share/rox/Edit/icons/Help.xpm
-share/rox/Edit/icons/Save.xpm
-share/rox/Edit/icons/Up.xpm
-@dirrm share/rox/Edit/icons
-@dirrm share/rox/Edit/Help
-@dirrm share/rox/Edit
diff --git a/sysutils/rox-edit/distinfo b/sysutils/rox-edit/distinfo
deleted file mode 100644
index 193a5aa100e..00000000000
--- a/sysutils/rox-edit/distinfo
+++ /dev/null
@@ -1,5 +0,0 @@
-$NetBSD: distinfo,v 1.2 2005/02/24 13:40:56 agc Exp $
-
-SHA1 (rox/Edit-0.1.2.tgz) = a2390e23de8dca1fc42b44c88d9608ea60bb6341
-RMD160 (rox/Edit-0.1.2.tgz) = a47194915c19c99829bc5c7f3a4832463d76892a
-Size (rox/Edit-0.1.2.tgz) = 12382 bytes