diff options
author | Alex Alexander <wired@gentoo.org> | 2012-05-03 10:53:42 +0000 |
---|---|---|
committer | Alex Alexander <wired@gentoo.org> | 2012-05-03 10:53:42 +0000 |
commit | 61f88b5cff03e121462631b89797bc4e07da378c (patch) | |
tree | 7f4c969997ee6025f1575194f72ebd6e0869c6d3 /app-text/wgetpaste | |
parent | Version bump. (diff) | |
download | gentoo-2-61f88b5cff03e121462631b89797bc4e07da378c.tar.gz gentoo-2-61f88b5cff03e121462631b89797bc4e07da378c.tar.bz2 gentoo-2-61f88b5cff03e121462631b89797bc4e07da378c.zip |
version bump, bug #413965
(Portage version: 2.2.0_alpha101/cvs/Linux x86_64)
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r-- | app-text/wgetpaste/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.19.ebuild | 24 |
2 files changed, 31 insertions, 2 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog index 2a6eb2356cd1..76c04623e453 100644 --- a/app-text/wgetpaste/ChangeLog +++ b/app-text/wgetpaste/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wgetpaste -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.118 2011/06/08 12:51:05 xarthisius Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.119 2012/05/03 10:53:42 wired Exp $ + +*wgetpaste-2.19 (03 May 2012) + + 03 May 2012; Alex Alexander <wired@gentoo.org> +wgetpaste-2.19.ebuild: + version bump, bug #413965 08 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> wgetpaste-2.18.ebuild: ppc/ppc64 stable wrt #368107 diff --git a/app-text/wgetpaste/wgetpaste-2.19.ebuild b/app-text/wgetpaste/wgetpaste-2.19.ebuild new file mode 100644 index 000000000000..8e214769638f --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.19.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.19.ebuild,v 1.1 2012/05/03 10:53:42 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 +} |