diff options
-rw-r--r-- | net-p2p/hx/ChangeLog | 7 | ||||
-rw-r--r-- | net-p2p/hx/hx-0.4.11.ebuild | 21 |
2 files changed, 21 insertions, 7 deletions
diff --git a/net-p2p/hx/ChangeLog b/net-p2p/hx/ChangeLog index f620101192ca..146ae0c09472 100644 --- a/net-p2p/hx/ChangeLog +++ b/net-p2p/hx/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-p2p/hx -# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/hx/ChangeLog,v 1.5 2006/10/29 13:04:40 kang Exp $ +# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/hx/ChangeLog,v 1.6 2007/01/04 16:53:45 flameeyes Exp $ + + 04 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> hx-0.4.11.ebuild: + Fix broken autotools handling. 29 Oct 2006; Guillaume Destuynder <kang@gentoo.org> hx-0.4.11.ebuild: Marked stable for x86 diff --git a/net-p2p/hx/hx-0.4.11.ebuild b/net-p2p/hx/hx-0.4.11.ebuild index 2ba411c12939..a8b1c4f1391d 100644 --- a/net-p2p/hx/hx-0.4.11.ebuild +++ b/net-p2p/hx/hx-0.4.11.ebuild @@ -1,6 +1,11 @@ -# Copyright 1999-2006 Gentoo Foundation +# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/hx/hx-0.4.11.ebuild,v 1.2 2006/10/29 13:04:40 kang Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/hx/hx-0.4.11.ebuild,v 1.3 2007/01/04 16:53:45 flameeyes Exp $ + +WANT_AUTOCONF="latest" +WANT_AUTOMAKE="latest" + +inherit autotools LICENSE="GPL-2" KEYWORDS="x86 ~ppc ~sparc" @@ -18,9 +23,16 @@ DEPEND="virtual/libc SLOT="0" +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + + cd "${S}" + eautoreconf +} + src_compile() { - cd work/${MY_P} - libtoolize --copy --force econf \ `use_enable ssl idea` \ `use_enable ssl cipher` \ @@ -32,7 +44,6 @@ src_compile() { } src_install() { - cd ${PF}/work/${MY_P} dodoc AUTHORS INSTALL PROBLEMS README* ChangeLog TODO NEWS run/hx/ghxvars run/hx/ghxvars.jp \ run/hx/hxrc run/hx/hxvars |