blob: d6e8c49c184b2ce1be3d77b9aaf577162fd87444 (
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-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/ncompress/ncompress-4.2.4-r1.ebuild,v 1.12 2005/01/01 11:49:39 eradicator Exp $
inherit eutils toolchain-funcs
DESCRIPTION="Another uncompressor for compatibility"
HOMEPAGE="ftp://ftp.leo.org/pub/comp/os/unix/linux/sunsite/utils/compress/"
SRC_URI="ftp://ftp.leo.org/pub/comp/os/unix/linux/sunsite/utils/compress/${P}.tar.gz
http://ftp.debian.org/debian/pool/main/n/ncompress/ncompress_4.2.4-15.diff.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
IUSE="build"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/ncompress-gcc34.patch
# Add bounds checking for bug 66251
epatch ${DISTDIR}/ncompress_4.2.4-15.diff.gz
}
src_compile() {
sed \
-e "s:options= :options= ${CFLAGS} :" \
-e "s:CC=cc:CC=$(tc-getCC):" \
Makefile.def > Makefile
make || die
}
src_install() {
dobin compress || die
dosym compress /usr/bin/uncompress
use build || doman compress.1
}
|