blob: bf4da6e890ed733387f61f674a6853425b1627cc (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/freeze/freeze-2.5.0.ebuild,v 1.8 2004/08/15 22:10:49 weeve Exp $
DESCRIPTION="Freeze/unfreeze compression program"
HOMEPAGE="http://www.ibiblio.org/pub/Linux/utils/compress/"
SRC_URI="ftp://ftp.ibiblio.org/pub/Linux/utils/compress/${P}.tar.gz"
LICENSE="as-is"
SLOT="0"
KEYWORDS="x86 ~ppc ~amd64 ~sparc"
IUSE=""
RDEPEND="virtual/libc"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
src_unpack() {
unpack ${A}
cd ${S}
# Hard links confuse prepman and these links are absolute.
sed -e "s:ln -f:ln -sf:g" -i Makefile.in || die "sed failed"
}
src_compile() {
econf || die
emake \
OPTIONS="-DDEFFILE=\\\"/etc/freeze.cnf\\\"" \
|| die "compile problem"
}
src_install() {
dodir /usr/bin /usr/share/man/man1
make install \
DEST="${D}/usr/bin" \
MANDEST="${D}/usr/share/man/man1" \
|| die
dobin showhuf || die
dodoc README *.lsm
}
|