blob: 02d6ed53d9f231cc03c0417be9a277ea38136300 (
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
|
# 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.2.37.ebuild,v 1.1 2005/11/08 11:37:45 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"
RDEPEND="!static? ( >=dev-libs/libarchive-1.02.032 )"
src_compile() {
if ! use userland_Darwin; then
( use static || use build ) && append-ldflags -static
fi
econf --bindir=/bin || die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install
# Create tar symlink for FreeBSD
if [[ ${CHOST} == *-freebsd* ]]; then
dosym bsdtar /bin/tar
dosym bsdtar.1.gz /usr/share/man/man1/tar.1.gz
fi
}
|