diff options
author | Greg Lewis <glewis@FreeBSD.org> | 2004-03-24 17:20:48 +0000 |
---|---|---|
committer | Greg Lewis <glewis@FreeBSD.org> | 2004-03-24 17:20:48 +0000 |
commit | 89d29ad1777d4b24d15593cca26ef8540940d3b0 (patch) | |
tree | ede5855d3abd761c5cf5b1e083f041d22f17b54a | |
parent | a030003d2b419b43e7fed468b2ab1bc06f3240e3 (diff) |
Notes
-rw-r--r-- | archivers/Makefile | 1 | ||||
-rw-r--r-- | archivers/libarchive/Makefile | 111 | ||||
-rw-r--r-- | archivers/libarchive/distinfo | 2 | ||||
-rw-r--r-- | archivers/libarchive/files/patch-Makefile | 10 | ||||
-rw-r--r-- | archivers/libarchive/pkg-descr | 5 |
5 files changed, 129 insertions, 0 deletions
diff --git a/archivers/Makefile b/archivers/Makefile index 4e107f77eeb3..f4a4bb17d0e6 100644 --- a/archivers/Makefile +++ b/archivers/Makefile @@ -24,6 +24,7 @@ SUBDIR += lbrate SUBDIR += lha SUBDIR += libarc + SUBDIR += libarchive SUBDIR += libcabinet SUBDIR += libcomprex SUBDIR += linux-unace diff --git a/archivers/libarchive/Makefile b/archivers/libarchive/Makefile new file mode 100644 index 000000000000..329f63cc367f --- /dev/null +++ b/archivers/libarchive/Makefile @@ -0,0 +1,111 @@ +# New ports collection makefile for: libarchive +# Date created: 23 March 2004 +# Whom: Greg Lewis <glewis@FreeBSD.org> +# +# $FreeBSD$ + +PORTNAME= libarchive +PORTVERSION= 2004.03.22 +CATEGORIES= archivers devel +MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/ +DISTNAME= ${PORTNAME}-${PORTVERSION:S/./-/g} +EXTRACT_SUFX= .tgz + +MAINTAINER= glewis@FreeBSD.org +COMMENT= Library to create and read several streaming archive formats + +WRKSRC= ${WRKDIR}/${PORTNAME} +MAKE_FLAGS+= INCLUDEDIR=${PREFIX}/include \ + LIBDIR=${PREFIX}/lib \ + MANDIR=${PREFIX}/man/man + +PLIST_FILES= include/archive.h \ + include/archive_entry.h \ + lib/libarchive.a \ + lib/libarchive.so \ + lib/libarchive.so.1 +.if !defined(NOPROFILE) +PLIST_FILES+= lib/libarchive_p.a +.endif + +MANCOMPRESSED= yes +MAN3= archive.3 \ + archive_compression.3 \ + archive_compression_name.3 \ + archive_entry.3 \ + archive_entry_clear.3 \ + archive_entry_clone.3 \ + archive_entry_copy_stat.3 \ + archive_entry_dup.3 \ + archive_entry_free.3 \ + archive_entry_gname.3 \ + archive_entry_hardlink.3 \ + archive_entry_new.3 \ + archive_entry_pathname.3 \ + archive_entry_set_devmajor.3 \ + archive_entry_set_devminor.3 \ + archive_entry_set_gid.3 \ + archive_entry_set_gname.3 \ + archive_entry_set_hardlink.3 \ + archive_entry_set_mode.3 \ + archive_entry_set_pathname.3 \ + archive_entry_set_symlink.3 \ + archive_entry_set_tartype.3 \ + archive_entry_set_uid.3 \ + archive_entry_set_uname.3 \ + archive_entry_size.3 \ + archive_entry_stat.3 \ + archive_entry_symlink.3 \ + archive_entry_tartype.3 \ + archive_entry_uname.3 \ + archive_errno.3 \ + archive_error_string.3 \ + archive_format.3 \ + archive_format_name.3 \ + archive_read.3 \ + archive_read_data.3 \ + archive_read_data_into_buffer.3 \ + archive_read_data_into_file.3 \ + archive_read_data_skip.3 \ + archive_read_extract.3 \ + archive_read_finish.3 \ + archive_read_new.3 \ + archive_read_next_header.3 \ + archive_read_open.3 \ + archive_read_open_file.3 \ + archive_read_open_tar.3 \ + archive_read_set_bytes_per_block.3 \ + archive_read_support_compression_all.3 \ + archive_read_support_compression_bzip2.3 \ + archive_read_support_compression_gzip.3 \ + archive_read_support_compression_none.3 \ + archive_read_support_format_all.3 \ + archive_read_support_format_cpio.3 \ + archive_read_support_format_gnutar.3 \ + archive_read_support_format_tar.3 \ + archive_util.3 \ + archive_write.3 \ + archive_write_data.3 \ + archive_write_finish.3 \ + archive_write_header.3 \ + archive_write_new.3 \ + archive_write_open.3 \ + archive_write_open_file.3 \ + archive_write_prepare.3 \ + archive_write_set_bytes_in_last_block.3 \ + archive_write_set_bytes_per_block.3 \ + archive_write_set_callbacks.3 \ + archive_write_set_compression_bzip2.3 \ + archive_write_set_compression_gzip.3 \ + archive_write_set_format_pax.3 \ + archive_write_set_format_ustar.3 \ + libarchive.3 +MAN5= tar.5 + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502103 +IGNORE= is in the base system +.endif + +.include <bsd.port.post.mk> diff --git a/archivers/libarchive/distinfo b/archivers/libarchive/distinfo new file mode 100644 index 000000000000..6e8bd5948ff2 --- /dev/null +++ b/archivers/libarchive/distinfo @@ -0,0 +1,2 @@ +MD5 (libarchive-2004-03-22.tgz) = ef84ad3a0608b87d1a6950eb7be83d57 +SIZE (libarchive-2004-03-22.tgz) = 81987 diff --git a/archivers/libarchive/files/patch-Makefile b/archivers/libarchive/files/patch-Makefile new file mode 100644 index 000000000000..f320d3f9c16b --- /dev/null +++ b/archivers/libarchive/files/patch-Makefile @@ -0,0 +1,10 @@ +--- Makefile.orig Tue Mar 23 15:41:55 2004 ++++ Makefile Tue Mar 23 15:42:03 2004 +@@ -120,7 +120,6 @@ + CFLAGS+= -DHAVE_DMALLOC -I/usr/local/include + LDFLAGS+= -L/usr/local/lib -ldmalloc + .endif +-CFLAGS+= -O3 + + WARNS?= 6 + diff --git a/archivers/libarchive/pkg-descr b/archivers/libarchive/pkg-descr new file mode 100644 index 000000000000..a339b66a2f66 --- /dev/null +++ b/archivers/libarchive/pkg-descr @@ -0,0 +1,5 @@ +Libarchive is a programming library that can create and read several +different streaming archive formats, including most popular tar +variants and the POSIX cpio format. + +WWW: http://people.freebsd.org/~kientzle/libarchive/ |