blob: 1ac1a1bb2c5d1b60ef39b718612f36c8d4ba5b25 (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Chad Huneycutt <chad.huneycutt@acm.org>
# $Header: /var/cvsroot/gentoo-x86/net-misc/lrzsz/lrzsz-0.12.20.ebuild,v 1.3 2002/07/08 18:24:26 phoenix Exp $
S=${WORKDIR}/${P}
DESCRIPTION="communication package providing the X, Y, and ZMODEM file transfer protocols"
SRC_URI="http://www.ohse.de/uwe/releases/lrzsz-0.12.20.tar.gz"
HOMEPAGE="http://www.ohse.de/uwe/software/lrzsz.html"
KEYWORDS="x86"
LICENSE="GPL-2"
SLOT="0"
DEPEND=""
#RDEPEND=""
src_compile() {
local options
if [ -z "`use nls`" ]; then
options=${options} --disable-nls
fi
CFLAGS="${CFLAGS} -Wstrict-prototypes" try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} ${options}
CFLAGS=${CFLAGS} -Wstrict-prototypes try emake
}
src_install () {
try make prefix=${D}/usr install
dosym /usr/bin/lrb /usr/bin/rb
dosym /usr/bin/lrx /usr/bin/rx
dosym /usr/bin/lrz /usr/bin/rz
dosym /usr/bin/lsb /usr/bin/sb
dosym /usr/bin/lsx /usr/bin/sx
dosym /usr/bin/lsz /usr/bin/sz
dodoc ABOUT-NLS AUTHORS COMPATABILITY COPYING ChangeLog NEWS README README.cvs README.gettext README.isdn4linux README.tests THANKS TODO
}
|