blob: 05a36fb8f8fe462cfdae26cc3eb2744b60c4e778 (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# 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.4 2003/06/24 13:52:26 weeve Exp $
S="${WORKDIR}/${PN}"
DESCRIPTION="ACE unarchiver"
SRC_URI="http://wilma.vub.ac.be/~pdewacht/${P}.tar.gz"
HOMEPAGE="http://www.winace.com/"
SLOT="1"
KEYWORDS="x86 -sparc"
LICENSE="freedist"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
cp unix/makefile .
cp unix/gccmaked .
}
src_compile() {
sed -e "s/^CFLAGS = -O.*/CFLAGS = -Wall ${CFLAGS}/g" \
-e "s/-DCASEINSENSE//g" \
< makefile > makefile.new
mv -f makefile.new makefile
emake dep
emake
}
src_install() {
dobin unace
dodoc readme.txt changes.log
}
|