summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen de Groot <yngwin@gentoo.org>2009-06-01 10:30:59 +0000
committerBen de Groot <yngwin@gentoo.org>2009-06-01 10:30:59 +0000
commit7637d9b8283e1c297cc27d85ec18e7cc50e799ef (patch)
tree3748abf08f64f4e2ac189fc1656aa28559f2f5cc /app-text/wgetpaste
parentFix installation of documentation (bug #271944). (diff)
downloadgentoo-2-7637d9b8283e1c297cc27d85ec18e7cc50e799ef.tar.gz
gentoo-2-7637d9b8283e1c297cc27d85ec18e7cc50e799ef.tar.bz2
gentoo-2-7637d9b8283e1c297cc27d85ec18e7cc50e799ef.zip
Drop old versions. Version bump. Drop now obsolete post-install message
about moving config files. Add zsh-completion useflag. (Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r--app-text/wgetpaste/ChangeLog8
-rw-r--r--app-text/wgetpaste/metadata.xml3
-rw-r--r--app-text/wgetpaste/wgetpaste-2.13.ebuild24
3 files changed, 34 insertions, 1 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog
index 05d38cd4b788..3266af781f2e 100644
--- a/app-text/wgetpaste/ChangeLog
+++ b/app-text/wgetpaste/ChangeLog
@@ -1,6 +1,12 @@
# 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.86 2009/03/17 13:57:06 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.87 2009/06/01 10:30:59 yngwin Exp $
+
+*wgetpaste-2.13 (01 Jun 2009)
+
+ 01 Jun 2009; Ben de Groot <yngwin@gentoo.org> +wgetpaste-2.13.ebuild:
+ Drop old versions. Version bump. Drop now obsolete post-install message
+ about moving config files. Add zsh-completion useflag.
17 Mar 2009; Raúl Porcel <armin76@gentoo.org> wgetpaste-2.12.ebuild:
m68k stable, thanks to kolla for testing
diff --git a/app-text/wgetpaste/metadata.xml b/app-text/wgetpaste/metadata.xml
index 6de2b8c5c101..63a5246c5dd4 100644
--- a/app-text/wgetpaste/metadata.xml
+++ b/app-text/wgetpaste/metadata.xml
@@ -5,4 +5,7 @@
<maintainer>
<email>yngwin@gentoo.org</email>
</maintainer>
+ <use>
+ <flag name='zsh-completion'>Install zsh command completion</flag>
+ </use>
</pkgmetadata>
diff --git a/app-text/wgetpaste/wgetpaste-2.13.ebuild b/app-text/wgetpaste/wgetpaste-2.13.ebuild
new file mode 100644
index 000000000000..fe640f5a9948
--- /dev/null
+++ b/app-text/wgetpaste/wgetpaste-2.13.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.13.ebuild,v 1.1 2009/06/01 10:30:59 yngwin Exp $
+
+DESCRIPTION="Command-line interface to various pastebins"
+HOMEPAGE="http://wgetpaste.zlin.dk/"
+SRC_URI="http://wgetpaste.zlin.dk/${P}.tar.bz2"
+
+LICENSE="as-is"
+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
+}