Magellan Linux

Annotation of /branches/magellan-next/extras/libarchive/libarchive-2.8.4-r2.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 7496 - (hide annotations) (download)
Tue Mar 15 22:29:17 2011 UTC (13 years, 2 months ago) by niro
File size: 1151 byte(s)
auto added: ver bump to 2.8.4-r2
1 niro 7496 # $Id: libarchive-2.7.1-r1.smage2 6463 2010-08-25 21:32:54Z niro $
2    
3     PNAME="libarchive"
4     PVER="2.8.4"
5     PBUILD="r2"
6    
7     PCATEGORIE="app-arch"
8     STATE="unstable"
9    
10     DESCRIPTION="A library that can create and read several streaming archive formats."
11     HOMEPAGE="http://people.freebsd.org/~kientzle/libarchive/"
12    
13     DEPEND=">= app-arch/bzip2-1.0.6
14     >= app-arch/xz-utils-5.0.1
15     >= dev-libs/openssl-1.0.0
16     >= sys-libs/zlib-1.2
17     >= sys-apps/attr-2.4
18     >= sys-apps/acl-2.2"
19    
20     SDEPEND=">= sys-fs/e2fsprogs-1.41
21     >= virtual/kernel-headers"
22    
23     SRCFILE="${PNAME}-${PVER}.tar.gz"
24     SRCDIR="${BUILDDIR}/${PNAME}-${PVER}"
25    
26     sminclude mbuild
27    
28     SRC_URI=(
29     http://libarchive.googlecode.com/files/${SRCFILE}
30     mirror://${PNAME}/${SRCFILE}
31     )
32    
33     UP2DATE="updatecmd http://code.google.com/p/${PNAME}/downloads/list | firsttarball gz"
34    
35     src_compile()
36     {
37     cd ${SRCDIR}
38    
39     # without-lzmadec is disabled because we use the newer lzma lib from xz-utils
40     mconfigure \
41     --disable-dependency-tracking \
42     --bindir=/bin \
43     --enable-bsdtar=shared \
44     --enable-bsdcpio=shared \
45     --enable-acl \
46     --enable-xattr \
47     --with-zlib \
48     --with-bz2lib\
49     --with-lzma \
50     --without-lzmadec \
51     || die
52    
53     mmake || die
54     }