diff options
author | Alex Alexander <wired@gentoo.org> | 2010-08-06 21:29:57 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2010-08-06 21:29:57 +0000 |
commit | 0bf59f43eda1c99e5b7800e3b8233c494acc5f24 (patch) | |
tree | e65148711a0eca85806957a4d989097b885b740b /app-text/wgetpaste | |
parent | Apply patch from Kacper Kowalik <xarthisius@gentoo.org> to respect CC,CXX,LDF... (diff) | |
download | gentoo-2-0bf59f43eda1c99e5b7800e3b8233c494acc5f24.tar.gz gentoo-2-0bf59f43eda1c99e5b7800e3b8233c494acc5f24.tar.bz2 gentoo-2-0bf59f43eda1c99e5b7800e3b8233c494acc5f24.zip |
version bump
(Portage version: 2.2_rc67/cvs/Linux x86_64)
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r-- | app-text/wgetpaste/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.18.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog index 51fabf114b76..85b24c39e85c 100644 --- a/app-text/wgetpaste/ChangeLog +++ b/app-text/wgetpaste/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wgetpaste # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.111 2010/07/05 19:06:07 spatz Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.112 2010/08/06 21:29:57 wired Exp $ + +*wgetpaste-2.18 (06 Aug 2010) + + 06 Aug 2010; Alex Alexander <wired@gentoo.org> +wgetpaste-2.18.ebuild: + version bump 05 Jul 2010; Dror Levin <spatz@gentoo.org> -wgetpaste-2.14.ebuild: Drop old. diff --git a/app-text/wgetpaste/wgetpaste-2.18.ebuild b/app-text/wgetpaste/wgetpaste-2.18.ebuild new file mode 100644 index 000000000000..d074e27f06e2 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.18.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.18.ebuild,v 1.1 2010/08/06 21:29:57 wired Exp $ + +DESCRIPTION="Command-line interface to various pastebins" +HOMEPAGE="http://wgetpaste.zlin.dk/" +SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2" + +LICENSE="public-domain" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris" +IUSE="zsh-completion" + +DEPEND="" +RDEPEND="net-misc/wget + zsh-completion? ( app-shells/zsh )" + +src_install() { + dobin ${PN} || die "Failed to install wgetpaste" + if use zsh-completion ; then + insinto /usr/share/zsh/site-functions + doins _wgetpaste || die "Failed to install zsh-completions" + fi +} |