diff options
author | fredb <fredb@pkgsrc.org> | 2002-05-25 02:42:32 +0000 |
---|---|---|
committer | fredb <fredb@pkgsrc.org> | 2002-05-25 02:42:32 +0000 |
commit | d37771482e6d906c064cb60f9f66d4b86f8e14b6 (patch) | |
tree | f357cceb625356279cfdb2a0fc5a8c6e9c3f5606 /archivers/cxunzip | |
parent | ec689a5257bf6f68b79c481803931fce44315e85 (diff) | |
download | pkgsrc-d37771482e6d906c064cb60f9f66d4b86f8e14b6.tar.gz |
Initial import of cxunzip-0.96, a.k.a "Cloned Xunzip", a GNOME zip archive
viewer and uncompressor, submitted by Jeremy C. Reed in PR pkg/17009.
Diffstat (limited to 'archivers/cxunzip')
-rw-r--r-- | archivers/cxunzip/DESCR | 5 | ||||
-rw-r--r-- | archivers/cxunzip/Makefile | 17 | ||||
-rw-r--r-- | archivers/cxunzip/PLIST | 3 | ||||
-rw-r--r-- | archivers/cxunzip/distinfo | 5 | ||||
-rw-r--r-- | archivers/cxunzip/patches/patch-aa | 13 |
5 files changed, 43 insertions, 0 deletions
diff --git a/archivers/cxunzip/DESCR b/archivers/cxunzip/DESCR new file mode 100644 index 00000000000..33edf434432 --- /dev/null +++ b/archivers/cxunzip/DESCR @@ -0,0 +1,5 @@ +Cloned Xunzip is an GNOME app for opening ZIP files and viewing +files. The graphical interface shows the filename, date, ratio, +real size and the packed file size. It can also be used to find +CRC errors. You can choose where to extract all or selected files; +plus it can lowercase filenames. diff --git a/archivers/cxunzip/Makefile b/archivers/cxunzip/Makefile new file mode 100644 index 00000000000..d7d88d46d8c --- /dev/null +++ b/archivers/cxunzip/Makefile @@ -0,0 +1,17 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/05/25 02:42:32 fredb Exp $ + +DISTNAME= cxunzip-0.96 +CATEGORIES= archivers +MASTER_SITES= http://gurb.ton.tut.fi/gnome/download/ + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://gurb.ton.tut.fi/gnome +COMMENT= Cloned Xunzip is a GNOME zip-archive uncompressing program + +GNU_CONFIGURE= yes +USE_GMAKE= yes +#USE_LIBTOOL= yes + +.include "../../x11/gnome-libs/buildlink.mk" +.include "../../mk/x11.buildlink.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/archivers/cxunzip/PLIST b/archivers/cxunzip/PLIST new file mode 100644 index 00000000000..11a6fedce91 --- /dev/null +++ b/archivers/cxunzip/PLIST @@ -0,0 +1,3 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/05/25 02:42:32 fredb Exp $ +bin/cxunzip +share/gnome/apps/Utilities/cxunzip.desktop diff --git a/archivers/cxunzip/distinfo b/archivers/cxunzip/distinfo new file mode 100644 index 00000000000..ca984811f02 --- /dev/null +++ b/archivers/cxunzip/distinfo @@ -0,0 +1,5 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/05/25 02:42:32 fredb Exp $ + +SHA1 (cxunzip-0.96.tar.gz) = 5c639c344a8a3a05ab33419d1b1f66b99ac460a4 +Size (cxunzip-0.96.tar.gz) = 185785 bytes +SHA1 (patch-aa) = 1738c34f3a0ca48f8651228b72e044b32872d6a1 diff --git a/archivers/cxunzip/patches/patch-aa b/archivers/cxunzip/patches/patch-aa new file mode 100644 index 00000000000..6ea1a82ec3e --- /dev/null +++ b/archivers/cxunzip/patches/patch-aa @@ -0,0 +1,13 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/05/25 02:42:32 fredb Exp $ + +--- src/callbacks.cc.orig Fri May 24 12:49:34 2002 ++++ src/callbacks.cc Fri May 24 12:51:17 2002 +@@ -203,7 +203,7 @@ + msg=g_strdup_printf(_("Unable view file %s"),filename); + show_error(msg); + } else { +- msg=g_strdup_printf("%s %s/%s &", ++ msg=g_strdup_printf("%s \"%s/%s\" &", + string,dirname,filename); + system(msg); + } |