mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
3e4ed01146
- Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav)
52 lines
1.0 KiB
Makefile
52 lines
1.0 KiB
Makefile
# New ports collection makefile for: libarchive
|
|
# Date created: 23 March 2004
|
|
# Whom: Greg Lewis <glewis@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libarchive
|
|
PORTVERSION= 2.4.14
|
|
PORTEPOCH= 1
|
|
CATEGORIES= archivers
|
|
MASTER_SITES= http://people.freebsd.org/~kientzle/libarchive/src/
|
|
|
|
MAINTAINER= glewis@FreeBSD.org
|
|
COMMENT= Library to create and read several streaming archive formats
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS= BSDCPIO "Enable bsdcpio" on
|
|
|
|
PLIST_FILES= bin/bsdtar \
|
|
include/archive.h \
|
|
include/archive_entry.h \
|
|
lib/libarchive.a \
|
|
lib/libarchive.la \
|
|
lib/libarchive.so \
|
|
lib/libarchive.so.6
|
|
|
|
MANCOMPRESSED= no
|
|
MAN1= bsdtar.1
|
|
MAN3= archive_entry.3 \
|
|
archive_read.3 \
|
|
archive_util.3 \
|
|
archive_write.3 \
|
|
archive_write_disk.3 \
|
|
libarchive.3 \
|
|
libarchive_internals.3
|
|
MAN5= cpio.5 \
|
|
libarchive-formats.5 \
|
|
mtree.5 \
|
|
tar.5
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_BSDCPIO)
|
|
CONFIGURE_ARGS+= --enable-bsdcpio=yes
|
|
PLIST_FILES+= bin/bsdcpio
|
|
MAN1+= bsdcpio.1
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|