blob: f879d132fe521f2cbfab5fab3ded0a1e804c9588 (
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-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/pbzip2/pbzip2-1.0.5-r2.ebuild,v 1.8 2010/04/06 07:30:44 hwoarang Exp $
EAPI=2
inherit multilib eutils
DESCRIPTION="parallel bzip2 (de)compressor using libbz2"
HOMEPAGE="http://compression.ca/pbzip2/"
SRC_URI="http://compression.ca/${PN}/${P}.tar.gz"
LICENSE="PBZIP2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-fbsd"
IUSE="static symlink"
DEPEND="app-arch/bzip2"
RDEPEND="${DEPEND}"
src_prepare() {
sed -e 's:^CFLAGS = .*$:#&:g' -e 's:g++:$(CXX):g' -i Makefile || die 'sed failed'
epatch "${FILESDIR}"/${P}-ldflags.patch
}
src_compile() {
tc-export CXX
if use static ; then
cp -f /usr/$(get_libdir)/libbz2.a "${S}"
emake pbzip2-static || die "Failed to build"
else
emake pbzip2 || die "Failed to build"
fi
}
src_install() {
dobin pbzip2 || die "Failed to install"
dodoc AUTHORS ChangeLog README
doman pbzip2.1 || die "Failed to install man page"
dosym /usr/bin/pbzip2 /usr/bin/pbunzip2
if use symlink; then
dosym /usr/bin/pbzip2 /usr/bin/bzip2
dosym /usr/bin/pbzip2 /usr/bin/bunzip2
dosym /usr/bin/pbzip2 /usr/bin/bzcat
fi
}
|