diff options
author | Tod Neidt <tod@gentoo.org> | 2002-01-31 22:48:40 +0000 |
---|---|---|
committer | Tod Neidt <tod@gentoo.org> | 2002-01-31 22:48:40 +0000 |
commit | e372c7be15fc575be482de1ab76055d2ff0114fd (patch) | |
tree | ea674cda0067f418ccdda21bc81b63bb659966d4 /net-misc/ytalk | |
parent | fix problem with dumping the base files; basically errors in texmf, or it sti... (diff) | |
download | gentoo-2-e372c7be15fc575be482de1ab76055d2ff0114fd.tar.gz gentoo-2-e372c7be15fc575be482de1ab76055d2ff0114fd.tar.bz2 gentoo-2-e372c7be15fc575be482de1ab76055d2ff0114fd.zip |
User contributed ebuild, initial commit (Thanks Chris Giorgi!)
Diffstat (limited to 'net-misc/ytalk')
-rw-r--r-- | net-misc/ytalk/files/digest-ytalk-3.1.1 | 1 | ||||
-rw-r--r-- | net-misc/ytalk/ytalk-3.1.1.ebuild | 51 |
2 files changed, 52 insertions, 0 deletions
diff --git a/net-misc/ytalk/files/digest-ytalk-3.1.1 b/net-misc/ytalk/files/digest-ytalk-3.1.1 new file mode 100644 index 000000000000..09066c698eb8 --- /dev/null +++ b/net-misc/ytalk/files/digest-ytalk-3.1.1 @@ -0,0 +1 @@ +MD5 e678401ab48be6728ec700458ad8ace0 ytalk-3.1.1.tar.gz 83218 diff --git a/net-misc/ytalk/ytalk-3.1.1.ebuild b/net-misc/ytalk/ytalk-3.1.1.ebuild new file mode 100644 index 000000000000..1ec1f826e303 --- /dev/null +++ b/net-misc/ytalk/ytalk-3.1.1.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Chris Giorgi <chrisgio@virtualscape.net> +# $Header: /var/cvsroot/gentoo-x86/net-misc/ytalk/ytalk-3.1.1.ebuild,v 1.1 2002/01/31 22:48:40 tod Exp $ + +S=${WORKDIR}/${P} + +DESCRIPTION="Multi-user replacement for UNIX talk" + +SRC_URI="http://www.iagora.com/~espel/ytalk/${P}.tar.gz" + +HOMEPAGE="http://www.iagora.com/~espel/ytalk/ytalk.html" + +DEPEND="virtual/glibc + >=sys-libs/ncurses-5.2 + X? ( virtual/x11 )" + +src_compile() { + + local myconf="" + use X || myconf="$myconf --without-x" #default enabled + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${myconf} \ + || die "./configure failed" + + emake || die "Parallel Make Failed" + +} + +src_install() { + + make \ + prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + install || die "Installation Failed" + + dodoc BUGS ChangeLog INSTALL README README.old + +} + + |