blob: 09ddf84dcdddbe23d2fac68c9cf96891dbf3ec5b (
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/unace/unace-1.2b.ebuild,v 1.11 2005/01/01 11:59:26 eradicator Exp $
DESCRIPTION="ACE unarchiver"
HOMEPAGE="http://www.winace.com/"
SRC_URI="http://wilma.vub.ac.be/~pdewacht/${P}.tar.gz"
LICENSE="freedist"
SLOT="1"
KEYWORDS="x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/${PN}"
src_unpack() {
unpack ${A}
cd ${S}
cp unix/makefile .
cp unix/gccmaked .
}
src_compile() {
sed -i -e "s/^CFLAGS = -O.*/CFLAGS = -Wall ${CFLAGS}/g" \
-e "s/-DCASEINSENSE//g" \
makefile
emake dep || die
emake || die
}
src_install() {
dobin unace || die
dodoc readme.txt changes.log
}
|