diff options
author | Patrick Lauer <patrick@gentoo.org> | 2009-09-29 23:51:37 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2009-09-29 23:51:37 +0000 |
commit | bd7ed671535b696b59c55b4ee13bd05588679898 (patch) | |
tree | e58a10c5a213ca7371ab2fc5ac8efd2f404661a8 /app-text | |
parent | Marked ~hppa too. (diff) | |
download | gentoo-2-bd7ed671535b696b59c55b4ee13bd05588679898.tar.gz gentoo-2-bd7ed671535b696b59c55b4ee13bd05588679898.tar.bz2 gentoo-2-bd7ed671535b696b59c55b4ee13bd05588679898.zip |
Bump as requested by upstream. License change.
(Portage version: 2.2_rc42/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/wgetpaste/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.14.ebuild | 24 |
2 files changed, 30 insertions, 1 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog index 5d4c267f6631..a3c4504b7da3 100644 --- a/app-text/wgetpaste/ChangeLog +++ b/app-text/wgetpaste/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wgetpaste # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.95 2009/08/28 16:45:32 williamh Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.96 2009/09/29 23:51:37 patrick Exp $ + +*wgetpaste-2.14 (29 Sep 2009) + + 29 Sep 2009; Patrick Lauer <patrick@gentoo.org> +wgetpaste-2.14.ebuild: + Bump as requested by upstream. License change. 28 Aug 2009; William Hubbs <williamh@gentoo.org> metadata.xml: Made zsh-completion a global use flag diff --git a/app-text/wgetpaste/wgetpaste-2.14.ebuild b/app-text/wgetpaste/wgetpaste-2.14.ebuild new file mode 100644 index 000000000000..01c91ea06b95 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.14.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.14.ebuild,v 1.1 2009/09/29 23:51:37 patrick 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 ~x86-fbsd" +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 +} |