From 51f5e9e43f467df09a2ef6946522f657f60d309e Mon Sep 17 00:00:00 2001 From: garga Date: Wed, 25 Jan 2006 16:55:09 +0000 Subject: The XAR project aims to provide an easily extensible archive format. Important design decisions include an easily extensible XML table of contents for random access to archived files, storing the toc at the beginning of the archive to allow for efficient handling of streamed archives, the ability to handle files of arbitrarily large sizes, the ability to choose independent encodings for individual files in the archive, the ability to store checksums for individual files in both compressed and uncompressed form, and the ability to query the table of content's rich meta-data. WWW: http://www.opendarwin.org/projects/xar/ PR: ports/92250 Submitted by: Jeffrey H. Johnson --- archivers/xar/Makefile | 37 ++++++++++++++++++++++++++++++ archivers/xar/distinfo | 3 +++ archivers/xar/files/patch-include_xar.h.in | 10 ++++++++ archivers/xar/pkg-descr | 11 +++++++++ archivers/xar/pkg-plist | 5 ++++ 5 files changed, 66 insertions(+) create mode 100644 archivers/xar/Makefile create mode 100644 archivers/xar/distinfo create mode 100644 archivers/xar/files/patch-include_xar.h.in create mode 100644 archivers/xar/pkg-descr create mode 100644 archivers/xar/pkg-plist (limited to 'archivers/xar') diff --git a/archivers/xar/Makefile b/archivers/xar/Makefile new file mode 100644 index 000000000000..1082b47e7a0f --- /dev/null +++ b/archivers/xar/Makefile @@ -0,0 +1,37 @@ +# New ports collection makefile for: xar +# Date created: 24 January 2005 +# Whom: Jeffrey H. Johnson +# +# $FreeBSD$ +# + +PORTNAME= xar +DISTVERSION= 1.3 +CATEGORIES= archivers +MASTER_SITES= http://www.opendarwin.org/projects/xar/ \ + http://distfiles-msn.opendarwin.org/ \ + http://distfiles-od.opendarwin.org/ \ + http://distfiles.opendarwin.org/ + +MAINTAINER= CPE1704TKS@bellsouth.net +COMMENT= OpenDarwin XML eXtensible ARchiver + +LIB_DEPENDS= curl:${PORTSDIR}/ftp/curl + +INSTALLS_SHLIB= yes + +USE_GNOME= libxml2 +USE_GMAKE= yes +USE_OPENSSL= yes + +GNU_CONFIGURE= yes + +MAN1= xar.1 + +.include + +.if ${OSVERSION} < 500000 +BROKEN= Does not build on FreeBSD < 5.x +.endif + +.include diff --git a/archivers/xar/distinfo b/archivers/xar/distinfo new file mode 100644 index 000000000000..8b93d6adf658 --- /dev/null +++ b/archivers/xar/distinfo @@ -0,0 +1,3 @@ +MD5 (xar-1.3.tar.gz) = 757103c9abeef77004a86af55a01452b +SHA256 (xar-1.3.tar.gz) = 654263d29dfe079dde2cb1b30cb208aa81b5b338135b25315c1e5d1325a66dd2 +SIZE (xar-1.3.tar.gz) = 114402 diff --git a/archivers/xar/files/patch-include_xar.h.in b/archivers/xar/files/patch-include_xar.h.in new file mode 100644 index 000000000000..8914328f8fb6 --- /dev/null +++ b/archivers/xar/files/patch-include_xar.h.in @@ -0,0 +1,10 @@ +--- include/xar.h.in.orig Tue Jan 24 02:14:31 2006 ++++ include/xar.h.in Tue Jan 24 02:14:45 2006 +@@ -36,6 +36,7 @@ + + #define XAR_VERSION "@XAR_VERSION@" + ++#include + #include + #include + diff --git a/archivers/xar/pkg-descr b/archivers/xar/pkg-descr new file mode 100644 index 000000000000..7a2670ccdc87 --- /dev/null +++ b/archivers/xar/pkg-descr @@ -0,0 +1,11 @@ +The XAR project aims to provide an easily extensible archive format. +Important design decisions include an easily extensible XML table of +contents for random access to archived files, storing the toc at the +beginning of the archive to allow for efficient handling of streamed +archives, the ability to handle files of arbitrarily large sizes, +the ability to choose independent encodings for individual files in +the archive, the ability to store checksums for individual files in +both compressed and uncompressed form, and the ability to query the +table of content's rich meta-data. + +WWW: http://www.opendarwin.org/projects/xar/ diff --git a/archivers/xar/pkg-plist b/archivers/xar/pkg-plist new file mode 100644 index 000000000000..0a783c4d8d4f --- /dev/null +++ b/archivers/xar/pkg-plist @@ -0,0 +1,5 @@ +bin/xar +include/xar/xar.h +lib/libxar.so.1 +lib/libxar.so +@dirrm include/xar -- cgit