diff options
author | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-04-27 20:10:13 +0000 |
---|---|---|
committer | Karol Wojtaszek <sekretarz@gentoo.org> | 2005-04-27 20:10:13 +0000 |
commit | 91e452d5d14f6732d9835200e455cea6ece1c77e (patch) | |
tree | cdcac2d947c2a006a2491248be49179fd89b1ed7 /net-p2p/gift-ares | |
parent | multilib fixes (diff) | |
download | historical-91e452d5d14f6732d9835200e455cea6ece1c77e.tar.gz historical-91e452d5d14f6732d9835200e455cea6ece1c77e.tar.bz2 historical-91e452d5d14f6732d9835200e455cea6ece1c77e.zip |
Version bump, bug #88656
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'net-p2p/gift-ares')
-rw-r--r-- | net-p2p/gift-ares/ChangeLog | 8 | ||||
-rw-r--r-- | net-p2p/gift-ares/files/digest-gift-ares-0.2.2 | 1 | ||||
-rw-r--r-- | net-p2p/gift-ares/files/gift-ares-0.2.2-gentoo.patch | 11 | ||||
-rw-r--r-- | net-p2p/gift-ares/gift-ares-0.2.2.ebuild | 46 |
4 files changed, 65 insertions, 1 deletions
diff --git a/net-p2p/gift-ares/ChangeLog b/net-p2p/gift-ares/ChangeLog index be20f6e3ac80..e067c68dbdb5 100644 --- a/net-p2p/gift-ares/ChangeLog +++ b/net-p2p/gift-ares/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-p2p/gift-ares # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-ares/ChangeLog,v 1.1 2005/02/02 16:55:19 squinky86 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-ares/ChangeLog,v 1.2 2005/04/27 20:07:09 sekretarz Exp $ + +*gift-ares-0.2.2 (27 Apr 2005) + + 27 Apr 2005; Karol Wojtaszek <sekretarz@gentoo.org> + +files/gift-ares-0.2.2-gentoo.patch, +gift-ares-0.2.2.ebuild: + Version bump, bug #88656 *gift-ares-0.2.1 (02 Feb 2005) diff --git a/net-p2p/gift-ares/files/digest-gift-ares-0.2.2 b/net-p2p/gift-ares/files/digest-gift-ares-0.2.2 new file mode 100644 index 000000000000..8e57f454218c --- /dev/null +++ b/net-p2p/gift-ares/files/digest-gift-ares-0.2.2 @@ -0,0 +1 @@ +MD5 f5b1e4547e5672a0905b835538dabbd5 gift-ares-0.2.2.tar.bz2 287714 diff --git a/net-p2p/gift-ares/files/gift-ares-0.2.2-gentoo.patch b/net-p2p/gift-ares/files/gift-ares-0.2.2-gentoo.patch new file mode 100644 index 000000000000..0635c41e6e8e --- /dev/null +++ b/net-p2p/gift-ares/files/gift-ares-0.2.2-gentoo.patch @@ -0,0 +1,11 @@ +--- lib/as_ares.c.orig 2005-02-09 20:46:07.000000000 +0100 ++++ lib/as_ares.c 2005-04-27 21:23:20.083273544 +0200 +@@ -61,7 +61,7 @@ + /* id, name, type, data, callback, udata */ + { AS_LISTEN_PORT, "main/port", AS_CONF_INT, {59049}, + port_change_cb, NULL }, +- { AS_USER_NAME, "main/username", AS_CONF_STR, {"antares"}, ++ { AS_USER_NAME, "main/username", AS_CONF_STR, {0}, + NULL, NULL }, + { AS_DOWNLOAD_MAX_ACTIVE, NULL, AS_CONF_INT, {6}, + NULL, NULL }, diff --git a/net-p2p/gift-ares/gift-ares-0.2.2.ebuild b/net-p2p/gift-ares/gift-ares-0.2.2.ebuild new file mode 100644 index 000000000000..4659628ecb87 --- /dev/null +++ b/net-p2p/gift-ares/gift-ares-0.2.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-p2p/gift-ares/gift-ares-0.2.2.ebuild,v 1.1 2005/04/27 20:07:09 sekretarz Exp $ + +inherit eutils + +IUSE="" + +DESCRIPTION="Ares Plugin for giFT" +HOMEPAGE="http://gift-ares.berlios.de/" +SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64" + +DEPEND="dev-util/pkgconfig" + +RDEPEND=">=net-p2p/gift-0.11.8" + +src_unpack() { + unpack ${A} + cd ${S} + + epatch ${FILESDIR}/${P}-gentoo.patch +} + +src_compile() { + econf || die "Ares plugin failed to configure" + emake || die "Ares plugin failed to build" +} + +src_install() { + make install DESTDIR="${D}" || die "Ares plugin failed to install" + dodoc AUTHORS COPYING ChangeLog NEWS README TODO +} + +pkg_postinst() { + einfo "It is recommended that you re-run gift-setup as" + einfo "the user you will run the giFT daemon as:" + einfo "\tgift-setup" + echo + einfo "Alternatively, if this plugin is already" + einfo "configured, you can add the following line" + einfo "to ~/.giFT/giftd.conf" + einfo "plugins = Ares" +} |