blob: be22dc4cf92f9728636d6fb6b9079d535be6e319 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/lzma/lzma-4.27.ebuild,v 1.3 2006/06/12 05:37:38 kumba Exp $
inherit toolchain-funcs
DESCRIPTION="LZMA Stream Compressor from the SDK"
HOMEPAGE="http://www.7-zip.org/sdk.html"
SRC_URI="mirror://sourceforge/sevenzip/${PN}427.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~mips ~ppc-macos ~x86"
IUSE="doc"
src_unpack() {
mkdir ${S}
cd ${S}
unpack ${A}
}
src_compile() {
cd SRC/7zip/Compress/LZMA_Alone
emake -f makefile.gcc \
CXX="$(tc-getCXX) ${CXXFLAGS}" \
CXX_C="$(tc-getCC) ${CFLAGS}" \
|| die "Make failed"
}
src_install() {
dobin SRC/7zip/Compress/LZMA_Alone/lzma
if use doc; then
dodoc *.txt
dohtml *.html
fi
}
|