blob: 81fff9873e4e636c1d07d9213ee71bcd3fbf6146 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/bsdtar/bsdtar-1.02.031.ebuild,v 1.1 2005/09/06 08:44:27 flameeyes Exp $
inherit eutils flag-o-matic
DESCRIPTION="BSD tar command"
HOMEPAGE="http://people.freebsd.org/~kientzle/libarchive/"
SRC_URI="http://people.freebsd.org/~kientzle/libarchive/src/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~ppc-macos ~x86"
IUSE="build static"
# This is told to be used ( !elibc_glibc? ( dev-libs/libgnugetopt ) ) but isn't
# linked at all
RDEPEND="app-arch/bzip2
sys-libs/zlib"
DEPEND="dev-libs/libarchive
${RDEPEND}"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${PN}-1.02.027-osx.patch
epatch ${FILESDIR}/${P}-wchar.patch
}
src_compile() {
( use static || use build ) && append-ldflags -static
econf --bindir=/bin || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install
# Create tar symlink for BSD userlands
if [[ ${USERLAND} == "BSD" ]]; then
dosym bsdtar /bin/tar
dosym bsdtar.1.gz /usr/share/man/man1/tar.1.gz
fi
}
|