summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Koltsov <maksbotan@gentoo.org>2013-04-29 19:12:45 +0000
committerMaxim Koltsov <maksbotan@gentoo.org>2013-04-29 19:12:45 +0000
commit5e301fff9ee41b0078f0d1606c7ae6455aa02144 (patch)
tree867a281db8ee34a5c8a102e6cd87f82868836179 /app-text/wgetpaste
parentUse subslot deps for libfm (diff)
downloadgentoo-2-5e301fff9ee41b0078f0d1606c7ae6455aa02144.tar.gz
gentoo-2-5e301fff9ee41b0078f0d1606c7ae6455aa02144.tar.bz2
gentoo-2-5e301fff9ee41b0078f0d1606c7ae6455aa02144.zip
Bump to 2.22, bug #467790.
(Portage version: 2.1.11.62/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r--app-text/wgetpaste/ChangeLog7
-rw-r--r--app-text/wgetpaste/wgetpaste-2.22.ebuild34
2 files changed, 40 insertions, 1 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog
index 4c181b7b4a09..f7480a1425f1 100644
--- a/app-text/wgetpaste/ChangeLog
+++ b/app-text/wgetpaste/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/wgetpaste
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.129 2013/03/20 09:50:08 maksbotan Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.130 2013/04/29 19:12:45 maksbotan Exp $
+
+*wgetpaste-2.22 (29 Apr 2013)
+
+ 29 Apr 2013; Maxim Koltsov <maksbotan@gentoo.org> +wgetpaste-2.22.ebuild:
+ Bump to 2.22, bug #467790.
*wgetpaste-2.21 (20 Mar 2013)
diff --git a/app-text/wgetpaste/wgetpaste-2.22.ebuild b/app-text/wgetpaste/wgetpaste-2.22.ebuild
new file mode 100644
index 000000000000..2b5614b9ca80
--- /dev/null
+++ b/app-text/wgetpaste/wgetpaste-2.22.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/wgetpaste-2.22.ebuild,v 1.1 2013/04/29 19:12:45 maksbotan Exp $
+
+EAPI="4"
+
+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 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+IUSE="zsh-completion +lodgeit-default"
+
+DEPEND=""
+RDEPEND="net-misc/wget
+ zsh-completion? ( app-shells/zsh )"
+
+src_prepare() {
+ sed -i -e "s:/etc:\"${EPREFIX}\"/etc:g" wgetpaste || die
+}
+
+src_install() {
+ dobin ${PN}
+ insinto /etc/wgetpaste.d
+ newins "${FILESDIR}"/wgetpaste-config-services services.conf
+ use lodgeit-default && \
+ newins "${FILESDIR}"/wgetpaste-config-default-lodgeit gentoo-default.conf
+ if use zsh-completion ; then
+ insinto /usr/share/zsh/site-functions
+ doins _wgetpaste
+ fi
+}