diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 07:36:02 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 07:36:02 +0000 |
commit | d07673c822b5f56fb83c844f292efdaa42ed7df0 (patch) | |
tree | 0d1fc22d0e1b79e8e5f14f3f742e9688b654e5a7 /net-irc/dircproxy | |
parent | finished repoman'ing (diff) | |
download | historical-d07673c822b5f56fb83c844f292efdaa42ed7df0.tar.gz historical-d07673c822b5f56fb83c844f292efdaa42ed7df0.tar.bz2 historical-d07673c822b5f56fb83c844f292efdaa42ed7df0.zip |
repoman'd
Diffstat (limited to 'net-irc/dircproxy')
-rw-r--r-- | net-irc/dircproxy/dircproxy-1.0.3.ebuild | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/net-irc/dircproxy/dircproxy-1.0.3.ebuild b/net-irc/dircproxy/dircproxy-1.0.3.ebuild index 96f32c3f7132..5bc77de3f538 100644 --- a/net-irc/dircproxy/dircproxy-1.0.3.ebuild +++ b/net-irc/dircproxy/dircproxy-1.0.3.ebuild @@ -1,29 +1,33 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/dircproxy/dircproxy-1.0.3.ebuild,v 1.2 2002/07/11 06:30:46 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/dircproxy/dircproxy-1.0.3.ebuild,v 1.3 2002/07/17 07:36:02 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="an IRC proxy server" SRC_URI="http://www.dircproxy.net/download/stable/${P}.tar.gz" HOMEPAGE="http:/www.dircproxy.net/" + DEPEND="virtual/glibc" + SLOT="0" +LICENSE="GPL-2" +KEYWORDS="x86" src_compile() { - ./configure \ - --host=${CHOST} \ - --prefix=/usr \ - --infodir=/usr/share/info \ + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ --sysconfdir=/etc \ - --mandir=/usr/share/man || die "./configure failed" - emake || die + --mandir=/usr/share/man || die "./configure failed" + emake || die } src_install () { - make DESTDIR=${D} install-strip || die + make DESTDIR=${D} install-strip || die + dodoc AUTHORS ChangeLog FAQ NEWS PROTOCOL README* TODO } - |