diff options
Diffstat (limited to 'net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild')
-rw-r--r-- | net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild b/net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild new file mode 100644 index 000000000000..463e1b8ff39b --- /dev/null +++ b/net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/dircproxy/dircproxy-1.2.0_beta2-r1.ebuild,v 1.1 2007/10/15 13:25:14 armin76 Exp $ + +inherit eutils + +MY_P="${P/_/-}" +DESCRIPTION="an IRC proxy server" +SRC_URI="http://dircproxy.securiweb.net/pub/1.2/${MY_P}.tar.bz" +HOMEPAGE="http://dircproxy.securiweb.net/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd ${S} + + epatch "${FILESDIR}/1.2.0-CVE-2007-5226.patch" +} + +src_install() { + emake DESTDIR="${D}" install || die "make install failed" + dodoc AUTHORS ChangeLog FAQ NEWS README* TODO INSTALL +} |