diff options
author | Jeroen Roovers <jer@gentoo.org> | 2011-07-30 17:05:49 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2011-07-30 17:05:49 +0000 |
commit | 3f4fca62ad9974b1edd004a7b764c99a0e2bf1c3 (patch) | |
tree | 535d91c4d0f15a09e9b2bc4568429c6770f9ff82 /net-misc/udpcast | |
parent | add multilib patch from Nathan Phillip (bug #376717 (diff) | |
download | gentoo-2-3f4fca62ad9974b1edd004a7b764c99a0e2bf1c3.tar.gz gentoo-2-3f4fca62ad9974b1edd004a7b764c99a0e2bf1c3.tar.bz2 gentoo-2-3f4fca62ad9974b1edd004a7b764c99a0e2bf1c3.zip |
Version bump.
(Portage version: 2.2.0_alpha49/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/udpcast')
-rw-r--r-- | net-misc/udpcast/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/udpcast/udpcast-20110710.ebuild | 29 |
2 files changed, 35 insertions, 1 deletions
diff --git a/net-misc/udpcast/ChangeLog b/net-misc/udpcast/ChangeLog index 0f7330b51fc3..20cd74b7542c 100644 --- a/net-misc/udpcast/ChangeLog +++ b/net-misc/udpcast/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/udpcast # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/udpcast/ChangeLog,v 1.21 2011/05/08 20:26:51 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/udpcast/ChangeLog,v 1.22 2011/07/30 17:05:49 jer Exp $ + +*udpcast-20110710 (30 Jul 2011) + + 30 Jul 2011; Jeroen Roovers <jer@gentoo.org> +udpcast-20110710.ebuild: + Version bump. *udpcast-20100130 (08 May 2011) diff --git a/net-misc/udpcast/udpcast-20110710.ebuild b/net-misc/udpcast/udpcast-20110710.ebuild new file mode 100644 index 000000000000..a45f868d600c --- /dev/null +++ b/net-misc/udpcast/udpcast-20110710.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/udpcast/udpcast-20110710.ebuild,v 1.1 2011/07/30 17:05:49 jer Exp $ + +EAPI=4 + +DESCRIPTION="Multicast file transfer tool" +HOMEPAGE="http://udpcast.linux.lu/" +SRC_URI="http://udpcast.linux.lu/download/${P}.tar.bz2" + +LICENSE="GPL-2 BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="" + +src_prepare() { + sed -i Makefile.in \ + -e '/^LDFLAGS +=-s/d' \ + -e '/^CFLAGS/s: -O6::g' \ + || die +} + +src_install() { + default + dodoc *.txt +} |