diff options
author | Ben de Groot <yngwin@gentoo.org> | 2009-06-06 12:45:35 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2009-06-06 12:45:35 +0000 |
commit | 1c00a51ecb5204c25348e22c548a6d966a1b198d (patch) | |
tree | 2781f3ce2787c1df53feab10ad65c887dd6dfffa /app-text/lodgeit | |
parent | amd64/x86 stable, bug #271889 (diff) | |
download | gentoo-2-1c00a51ecb5204c25348e22c548a6d966a1b198d.tar.gz gentoo-2-1c00a51ecb5204c25348e22c548a6d966a1b198d.tar.bz2 gentoo-2-1c00a51ecb5204c25348e22c548a6d966a1b198d.zip |
Initial import from bug 270343. Ebuild by Dror Levin, who will be maintainer by proxy until he becomes full dev.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-text/lodgeit')
-rw-r--r-- | app-text/lodgeit/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/lodgeit/lodgeit-0.3.ebuild | 37 | ||||
-rw-r--r-- | app-text/lodgeit/metadata.xml | 20 |
3 files changed, 68 insertions, 0 deletions
diff --git a/app-text/lodgeit/ChangeLog b/app-text/lodgeit/ChangeLog new file mode 100644 index 000000000000..734ca01a6d37 --- /dev/null +++ b/app-text/lodgeit/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for app-text/lodgeit +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lodgeit/ChangeLog,v 1.1 2009/06/06 12:45:35 yngwin Exp $ + +*lodgeit-0.3 (06 Jun 2009) + + 06 Jun 2009; Ben de Groot <yngwin@gentoo.org> +lodgeit-0.3.ebuild, + +metadata.xml: + Initial import from bug 270343. Ebuild by Dror Levin, who will be + maintainer by proxy until he becomes full dev. + diff --git a/app-text/lodgeit/lodgeit-0.3.ebuild b/app-text/lodgeit/lodgeit-0.3.ebuild new file mode 100644 index 000000000000..274d8e7a5dc5 --- /dev/null +++ b/app-text/lodgeit/lodgeit-0.3.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/lodgeit/lodgeit-0.3.ebuild,v 1.1 2009/06/06 12:45:35 yngwin Exp $ + +EAPI="2" + +DESCRIPTION="Command-line interface to paste.pocoo.org" +HOMEPAGE="http://paste.pocoo.org/" +SRC_URI="http://dev.pocoo.org/hg/lodgeit-main/raw-file/tip/scripts/lodgeit.py + -> ${P}.py + vim? ( http://www.vim.org/scripts/download_script.php?src_id=8848 + -> ${P}.vim )" + +LICENSE="as-is" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="vim" + +RESTRICT="test" + +DEPEND="" +RDEPEND="virtual/python + vim? ( || ( app-editors/vim[python] app-editors/gvim[python] ) )" + +src_unpack() { + : +} + +src_install() { + dobin "${DISTDIR}/${P}.py" + dosym "/usr/bin/${P}.py" "/usr/bin/${PN}" + + if use vim; then + insinto /usr/share/vim/vimfiles/plugin + newins "${DISTDIR}/${P}.vim" "${PN}.vim" + fi +} diff --git a/app-text/lodgeit/metadata.xml b/app-text/lodgeit/metadata.xml new file mode 100644 index 000000000000..c8a8a60962f9 --- /dev/null +++ b/app-text/lodgeit/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>no-herd</herd> + <maintainer> + <email>spatz@psybear.com</email> + <name>Dror Levin</name> + <description>proxied maintainer</description> + </maintainer> + <maintainer> + <email>yngwin@gentoo.org</email> + <name>Ben de Groot</name> + <description>proxy</description> + </maintainer> + <use> + <flag name='vim'> + Install a vim plugin allowing to paste and download from within vim + </flag> + </use> +</pkgmetadata> |