blob: e6feba2a0e1a8bb7256bafb0bcc0f114060ec88f (
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-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Achim Gottinger <achim@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/app-arch/zip/zip-2.3-r1.ebuild,v 1.3 2001/11/10 02:33:03 hallski Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Info ZIP"
SRC_URI="http://www.ibiblio.org/pub/Linux/distributions/gentoo/distfiles/${PN}23.tar.gz"
HOMEPAGE="ftp://ftp.freesoftware.com/pub/infozip/Zip.html"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}/unix
cp Makefile Makefile.orig
sed -e "s:-O2:${CFLAGS}:" Makefile.orig > Makefile
}
src_compile() {
try make -f unix/Makefile generic_gcc
}
src_install () {
dobin zip zipcloak zipnote zipsplit
doman man/zip.1
dodoc BUGS CHANGES LICENSE MANUAL README TODO WHATSNEW WHERE
}
|