diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-13 14:22:20 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-07-13 14:22:20 +0000 |
commit | 055f34b478c6c70e2d04f5510bc361b36cd5ab9c (patch) | |
tree | a464625220214a306d990b98f9a5b301f8c60e37 /net-p2p/dchub/dchub-0.5.2.ebuild | |
parent | QA: Use full atoms for best_version, has_version and built_with_use queries. (diff) | |
download | gentoo-2-055f34b478c6c70e2d04f5510bc361b36cd5ab9c.tar.gz gentoo-2-055f34b478c6c70e2d04f5510bc361b36cd5ab9c.tar.bz2 gentoo-2-055f34b478c6c70e2d04f5510bc361b36cd5ab9c.zip |
Fixed DEPEND and HOMEPAGE variable by aye, bug #58824. Added to ~amd64
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'net-p2p/dchub/dchub-0.5.2.ebuild')
-rw-r--r-- | net-p2p/dchub/dchub-0.5.2.ebuild | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/net-p2p/dchub/dchub-0.5.2.ebuild b/net-p2p/dchub/dchub-0.5.2.ebuild index 985e47dc905b..0fd33520001f 100644 --- a/net-p2p/dchub/dchub-0.5.2.ebuild +++ b/net-p2p/dchub/dchub-0.5.2.ebuild @@ -1,25 +1,36 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/dchub/dchub-0.5.2.ebuild,v 1.7 2005/06/27 07:20:49 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/dchub/dchub-0.5.2.ebuild,v 1.8 2005/07/13 14:22:20 sekretarz Exp $ + +inherit eutils IUSE="" -HOMEPAGE="http://brainz.servebeer.com/dctc/#dchub" +HOMEPAGE="http://ac2i.homelinux.com/dctc/#dchub" DESCRIPTION="dchub (Direct Connect Hub), a linux hub for the p2p 'direct connect'" SRC_URI="http://brainz.servebeer.com/dctc/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="ppc ppc64 x86" +KEYWORDS="ppc ppc64 x86 ~amd64" RDEPEND="virtual/libc - =dev-libs/glib-1* - dev-lang/perl - dev-db/edb" + =dev-libs/glib-2* + sys-devel/libperl + dev-libs/libxml2 + dev-libs/libgcrypt + sys-libs/zlib" DEPEND="${RDEPEND} dev-util/pkgconfig" +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${P}-amd64.patch +} + src_install() { make DESTDIR=${D} install || die "install problem" |