diff options
Diffstat (limited to 'net-misc/lrzsz/lrzsz-0.12.20.ebuild')
-rw-r--r-- | net-misc/lrzsz/lrzsz-0.12.20.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-misc/lrzsz/lrzsz-0.12.20.ebuild b/net-misc/lrzsz/lrzsz-0.12.20.ebuild new file mode 100644 index 000000000000..a28c312df279 --- /dev/null +++ b/net-misc/lrzsz/lrzsz-0.12.20.ebuild @@ -0,0 +1,37 @@ +# 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> +# /home/cvsroot/gentoo-x86/skel.build,v 1.5 2001/07/24 22:30:35 lordjoe 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" + +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 +} + |