pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/archivers/libzip Import libzip-0.6, a C library to man...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/90300580a6e5
branches:  trunk
changeset: 496091:90300580a6e5
user:      dillo <dillo%pkgsrc.org@localhost>
date:      Wed Jun 22 21:11:38 2005 +0000

description:
Import libzip-0.6, a C library to manipulate zip archives.

diffstat:

 archivers/libzip/DESCR         |   5 +++++
 archivers/libzip/Makefile      |  20 ++++++++++++++++++++
 archivers/libzip/PLIST         |  39 +++++++++++++++++++++++++++++++++++++++
 archivers/libzip/buildlink3.mk |  20 ++++++++++++++++++++
 archivers/libzip/distinfo      |   5 +++++
 5 files changed, 89 insertions(+), 0 deletions(-)

diffs (109 lines):

diff -r b969ee6e8d94 -r 90300580a6e5 archivers/libzip/DESCR
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/libzip/DESCR    Wed Jun 22 21:11:38 2005 +0000
@@ -0,0 +1,5 @@
+libzip is a C library for reading, creating, and modifying zip
+archives. Files can be added from data buffers, files, or compressed
+data copied directly from other zip archives. Changes made without
+closing the archive can be reverted. The API is documented by man
+pages.
diff -r b969ee6e8d94 -r 90300580a6e5 archivers/libzip/Makefile
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/libzip/Makefile Wed Jun 22 21:11:38 2005 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: Makefile,v 1.1.1.1 2005/06/22 21:11:38 dillo Exp $
+#
+
+DISTNAME=              libzip-0.6
+CATEGORIES=            archivers devel
+MASTER_SITES=          http://www.nih.at/libzip/
+
+MAINTAINER=            dillo%NetBSD.org@localhost
+HOMEPAGE=              http://www.nih.at/libzip/
+COMMENT=               C library to manipulate zip archives
+
+USE_PKGLOCALEDIR=      yes
+USE_LIBTOOL=           yes
+PKGCONFIG_OVERRIDE+=   ${WRKSRC}/libzip.pc.in
+GNU_CONFIGURE=         yes
+
+TEST_TARGET=           check
+
+.include "../../devel/zlib/buildlink3.mk"
+.include "../../mk/bsd.pkg.mk"
diff -r b969ee6e8d94 -r 90300580a6e5 archivers/libzip/PLIST
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/libzip/PLIST    Wed Jun 22 21:11:38 2005 +0000
@@ -0,0 +1,39 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2005/06/22 21:11:39 dillo Exp $
+bin/zipcmp
+bin/zipmerge
+include/zip.h
+lib/libzip.la
+lib/pkgconfig/libzip.pc
+man/man1/zipcmp.1
+man/man1/zipmerge.1
+man/man3/libzip.3
+man/man3/zip_add.3
+man/man3/zip_close.3
+man/man3/zip_delete.3
+man/man3/zip_error_get.3
+man/man3/zip_error_get_sys_type.3
+man/man3/zip_error_to_str.3
+man/man3/zip_errors.3
+man/man3/zip_fclose.3
+man/man3/zip_file_error_get.3
+man/man3/zip_file_strerror.3
+man/man3/zip_fopen.3
+man/man3/zip_fopen_index.3
+man/man3/zip_fread.3
+man/man3/zip_get_name.3
+man/man3/zip_get_num_files.3
+man/man3/zip_name_locate.3
+man/man3/zip_open.3
+man/man3/zip_rename.3
+man/man3/zip_replace.3
+man/man3/zip_source_buffer.3
+man/man3/zip_source_file.3
+man/man3/zip_source_filep.3
+man/man3/zip_source_free.3
+man/man3/zip_source_function.3
+man/man3/zip_source_zip.3
+man/man3/zip_stat.3
+man/man3/zip_stat_index.3
+man/man3/zip_strerror.3
+man/man3/zip_unchange.3
+man/man3/zip_unchange_all.3
diff -r b969ee6e8d94 -r 90300580a6e5 archivers/libzip/buildlink3.mk
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/libzip/buildlink3.mk    Wed Jun 22 21:11:38 2005 +0000
@@ -0,0 +1,20 @@
+# $NetBSD: buildlink3.mk,v 1.1.1.1 2005/06/22 21:11:39 dillo Exp $
+
+BUILDLINK_DEPTH:=      ${BUILDLINK_DEPTH}+
+LIBZIP_BUILDLINK3_MK:= ${LIBZIP_BUILDLINK3_MK}+
+
+.if !empty(BUILDLINK_DEPTH:M+)
+BUILDLINK_DEPENDS+=    libzip
+.endif
+
+BUILDLINK_PACKAGES:=   ${BUILDLINK_PACKAGES:Nlibzip}
+BUILDLINK_PACKAGES+=   libzip
+
+.if !empty(LIBZIP_BUILDLINK3_MK:M+)
+BUILDLINK_DEPENDS.libzip+=     libzip>=0.6
+BUILDLINK_PKGSRCDIR.libzip?=   ../../archivers/libzip
+.endif # LIBZIP_BUILDLINK3_MK
+
+.include "../../devel/zlib/buildlink3.mk"
+
+BUILDLINK_DEPTH:=     ${BUILDLINK_DEPTH:S/+$//}
diff -r b969ee6e8d94 -r 90300580a6e5 archivers/libzip/distinfo
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/archivers/libzip/distinfo Wed Jun 22 21:11:38 2005 +0000
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2005/06/22 21:11:39 dillo Exp $
+
+SHA1 (libzip-0.6.tar.gz) = 5ee4d85117a765b73276765e81ab82607f774c50
+RMD160 (libzip-0.6.tar.gz) = c19408d75b9a4ff826f11be28a09af6a6c3dfc5d
+Size (libzip-0.6.tar.gz) = 380502 bytes



Home | Main Index | Thread Index | Old Index