diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-02-20 17:46:19 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-02-20 17:46:19 +0000 |
commit | d62541f40806eb97ce1e0efd67a10b1e2b2d8687 (patch) | |
tree | 1cddc7b20022c6dfff239dc5eba4a6a6c93efd5a /net-ftp | |
parent | x86 stable wrt bug #354937 (diff) | |
download | gentoo-2-d62541f40806eb97ce1e0efd67a10b1e2b2d8687.tar.gz gentoo-2-d62541f40806eb97ce1e0efd67a10b1e2b2d8687.tar.bz2 gentoo-2-d62541f40806eb97ce1e0efd67a10b1e2b2d8687.zip |
Fix install of binary #353552 by Hanno Boeck and touchup ebuild a bit.
(Portage version: 2.2.0_alpha24/cvs/Linux x86_64)
Diffstat (limited to 'net-ftp')
-rw-r--r-- | net-ftp/linksys-tftp/ChangeLog | 10 | ||||
-rw-r--r-- | net-ftp/linksys-tftp/linksys-tftp-1.2.1-r2.ebuild | 29 |
2 files changed, 37 insertions, 2 deletions
diff --git a/net-ftp/linksys-tftp/ChangeLog b/net-ftp/linksys-tftp/ChangeLog index 1f3818f7f8ee..620c9683db12 100644 --- a/net-ftp/linksys-tftp/ChangeLog +++ b/net-ftp/linksys-tftp/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-ftp/linksys-tftp -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-ftp/linksys-tftp/ChangeLog,v 1.6 2010/10/04 15:57:22 xmw Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-ftp/linksys-tftp/ChangeLog,v 1.7 2011/02/20 17:46:19 vapier Exp $ + +*linksys-tftp-1.2.1-r2 (20 Feb 2011) + + 20 Feb 2011; Mike Frysinger <vapier@gentoo.org> + +linksys-tftp-1.2.1-r2.ebuild: + Fix install of binary #353552 by Hanno Boeck and touchup ebuild a bit. *linksys-tftp-1.2.1-r1 (03 Oct 2010) diff --git a/net-ftp/linksys-tftp/linksys-tftp-1.2.1-r2.ebuild b/net-ftp/linksys-tftp/linksys-tftp-1.2.1-r2.ebuild new file mode 100644 index 000000000000..634565f70e8f --- /dev/null +++ b/net-ftp/linksys-tftp/linksys-tftp-1.2.1-r2.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-ftp/linksys-tftp/linksys-tftp-1.2.1-r2.ebuild,v 1.1 2011/02/20 17:46:19 vapier Exp $ + +EAPI="2" + +inherit eutils toolchain-funcs + +DESCRIPTION="TFTP client suitable for uploading to the Linksys WRT54G Wireless Router" +HOMEPAGE="http://redsand.net/projects/linksys-tftp/linksys-tftp.php" +SRC_URI="http://redsand.net/projects/${PN}/pub/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +src_prepare() { + epatch "${FILESDIR}"/${PF}-Makefile.patch +} + +src_compile() { + emake CC="$(tc-getCC)" || die +} + +src_install() { + dobin linksys-tftp || die + dodoc README +} |