diff options
author | Maxim Koltsov <maksbotan@gentoo.org> | 2013-03-20 09:50:08 +0000 |
---|---|---|
committer | Maxim Koltsov <maksbotan@gentoo.org> | 2013-03-20 09:50:08 +0000 |
commit | f1a52edfce45edc99ea463f8fe6a8328ef4399a1 (patch) | |
tree | 290092ae2ad0694b6d74536fdcdf0e388db6ea51 /app-text/wgetpaste | |
parent | Stable for x86, wrt bug #462364 (diff) | |
download | gentoo-2-f1a52edfce45edc99ea463f8fe6a8328ef4399a1.tar.gz gentoo-2-f1a52edfce45edc99ea463f8fe6a8328ef4399a1.tar.bz2 gentoo-2-f1a52edfce45edc99ea463f8fe6a8328ef4399a1.zip |
Bump to 2.21, bug #462378.
(Portage version: 2.1.11.55/cvs/Linux x86_64, signed Manifest commit with key F8DBDADE)
Diffstat (limited to 'app-text/wgetpaste')
-rw-r--r-- | app-text/wgetpaste/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/wgetpaste/wgetpaste-2.21.ebuild | 34 |
2 files changed, 41 insertions, 2 deletions
diff --git a/app-text/wgetpaste/ChangeLog b/app-text/wgetpaste/ChangeLog index 8d701cc45899..4c181b7b4a09 100644 --- a/app-text/wgetpaste/ChangeLog +++ b/app-text/wgetpaste/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/wgetpaste -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/wgetpaste/ChangeLog,v 1.128 2012/10/07 10:22:15 pacho Exp $ +# 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 $ + +*wgetpaste-2.21 (20 Mar 2013) + + 20 Mar 2013; Maxim Koltsov <maksbotan@gentoo.org> +wgetpaste-2.21.ebuild: + Bump to 2.21, bug #462378. 07 Oct 2012; Pacho Ramos <pacho@gentoo.org> metadata.xml: Drop maintainer due retirement, #274113 diff --git a/app-text/wgetpaste/wgetpaste-2.21.ebuild b/app-text/wgetpaste/wgetpaste-2.21.ebuild new file mode 100644 index 000000000000..6d1f513db9d1 --- /dev/null +++ b/app-text/wgetpaste/wgetpaste-2.21.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.21.ebuild,v 1.1 2013/03/20 09:50:08 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 +} |