summaryrefslogtreecommitdiffstats
path: root/archive-libs/libarchive
diff options
context:
space:
mode:
authorVlad Glagolev2012-05-14 14:28:20 +0400
committerVlad Glagolev2012-05-14 14:28:20 +0400
commit7e1d0bac09a87772954d6d0b9b07a2217fabf64e (patch)
tree83fb44b319ea2d2182c0bad521a3d21cf7f98b19 /archive-libs/libarchive
parent53519f75cc6369953f8d28d8ef4ee690d194ee5c (diff)
libarchive: fixed dependencies: _all_ of them are optional; added missing
Diffstat (limited to 'archive-libs/libarchive')
-rwxr-xr-xarchive-libs/libarchive/DEPENDS54
-rw-r--r--archive-libs/libarchive/HISTORY3
2 files changed, 52 insertions, 5 deletions
diff --git a/archive-libs/libarchive/DEPENDS b/archive-libs/libarchive/DEPENDS
index c443fac845..cb1874e105 100755
--- a/archive-libs/libarchive/DEPENDS
+++ b/archive-libs/libarchive/DEPENDS
@@ -1,5 +1,49 @@
-depends zlib &&
-depends bzip2 &&
-depends libxml2 &&
-depends xz-utils &&
-optional_depends openssl '' '' 'encryption support'
+optional_depends attr \
+ "--enable-xattr" \
+ "--disable-xattr" \
+ "for Extended Attributes support" &&
+
+optional_depends acl \
+ "--enable-acl" \
+ "--disable-acl" \
+ "for ACL support" &&
+
+optional_depends zlib \
+ "--with-zlib" \
+ "--without-zlib" \
+ "for gzip support through zlib" &&
+
+optional_depends bzip2 \
+ "--with-bz2lib" \
+ "--without-bz2lib" \
+ "for bzip2 support through bz2lib" &&
+
+optional_depends lzma-utils \
+ "--with-lzmadec" \
+ "--without-lzmadec" \
+ "for lzma support through lzmadec" &&
+
+optional_depends xz-utils \
+ "--with-lzma" \
+ "--without-lzma" \
+ "for xz support through lzma" &&
+
+optional_depends nettle \
+ "--with-nettle" \
+ "--without-nettle" \
+ "for crypto support from Nettle" &&
+
+optional_depends openssl \
+ "--with-openssl" \
+ "--without-openssl" \
+ "for mtree and xar hashes support through openssl" &&
+
+optional_depends libxml2 \
+ "--with-xml2" \
+ "--without-xml2" \
+ "for xar support through libxml2" &&
+
+optional_depends expat \
+ "--with-expat" \
+ "--without-expat" \
+ "for xar support through expat"
diff --git a/archive-libs/libarchive/HISTORY b/archive-libs/libarchive/HISTORY
index 0eaf343a2a..b338ae622c 100644
--- a/archive-libs/libarchive/HISTORY
+++ b/archive-libs/libarchive/HISTORY
@@ -1,3 +1,6 @@
+2012-05-14 Vlad Glagolev <stealth@sourcemage.org>
+ * DEPENDS: fixed dependencies: _all_ of them are optional; added missing
+
2012-04-02 Treeve Jelbert <treeve@sourcemage.org>
* DEPENDS: add zlib,bzip2, xz-utils, libxml2