2004-03-24 18:20:48 +01:00
|
|
|
# New ports collection makefile for: libarchive
|
|
|
|
# Date created: 23 March 2004
|
|
|
|
# Whom: Greg Lewis <glewis@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
|
|
|
|
PORTNAME= libarchive
|
2008-03-16 21:51:01 +01:00
|
|
|
PORTVERSION= 2.4.14
|
2004-08-23 18:37:49 +02:00
|
|
|
PORTEPOCH= 1
|
2004-06-16 17:20:49 +02:00
|
|
|
CATEGORIES= archivers
|
2004-03-24 18:20:48 +01:00
|
|
|
MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/
|
|
|
|
|
|
|
|
MAINTAINER= glewis@FreeBSD.org
|
|
|
|
COMMENT= Library to create and read several streaming archive formats
|
|
|
|
|
2004-08-23 18:37:49 +02:00
|
|
|
GNU_CONFIGURE= yes
|
2005-10-13 19:09:27 +02:00
|
|
|
INSTALLS_SHLIB= yes
|
2004-03-24 18:20:48 +01:00
|
|
|
|
2007-12-30 20:23:14 +01:00
|
|
|
OPTIONS= BSDCPIO "Enable bsdcpio" on
|
2007-09-20 18:47:33 +02:00
|
|
|
|
2006-06-21 00:33:47 +02:00
|
|
|
PLIST_FILES= bin/bsdtar \
|
|
|
|
include/archive.h \
|
2004-03-24 18:20:48 +01:00
|
|
|
include/archive_entry.h \
|
2005-10-13 19:09:27 +02:00
|
|
|
lib/libarchive.a \
|
|
|
|
lib/libarchive.la \
|
|
|
|
lib/libarchive.so \
|
2007-12-30 20:23:14 +01:00
|
|
|
lib/libarchive.so.6
|
2004-03-24 18:20:48 +01:00
|
|
|
|
2004-08-23 18:37:49 +02:00
|
|
|
MANCOMPRESSED= no
|
2006-06-21 00:33:47 +02:00
|
|
|
MAN1= bsdtar.1
|
2004-08-23 18:37:49 +02:00
|
|
|
MAN3= archive_entry.3 \
|
2004-03-24 18:20:48 +01:00
|
|
|
archive_read.3 \
|
|
|
|
archive_util.3 \
|
|
|
|
archive_write.3 \
|
2007-06-27 22:04:51 +02:00
|
|
|
archive_write_disk.3 \
|
2007-06-26 07:19:17 +02:00
|
|
|
libarchive.3 \
|
|
|
|
libarchive_internals.3
|
2007-10-14 19:38:36 +02:00
|
|
|
MAN5= cpio.5 \
|
|
|
|
libarchive-formats.5 \
|
|
|
|
mtree.5 \
|
2004-06-16 17:20:49 +02:00
|
|
|
tar.5
|
2004-03-24 18:20:48 +01:00
|
|
|
|
2007-09-20 18:47:33 +02:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if defined(WITH_BSDCPIO)
|
|
|
|
CONFIGURE_ARGS+= --enable-bsdcpio=yes
|
|
|
|
PLIST_FILES+= bin/bsdcpio
|
2007-10-07 22:51:46 +02:00
|
|
|
MAN1+= bsdcpio.1
|
2007-09-20 18:47:33 +02:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.post.mk>
|