diff options
Diffstat (limited to 'app-text/lodgeit/lodgeit-0.3_p20120507.ebuild')
-rw-r--r-- | app-text/lodgeit/lodgeit-0.3_p20120507.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/app-text/lodgeit/lodgeit-0.3_p20120507.ebuild b/app-text/lodgeit/lodgeit-0.3_p20120507.ebuild new file mode 100644 index 000000000000..59863dfe1d91 --- /dev/null +++ b/app-text/lodgeit/lodgeit-0.3_p20120507.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI="4" + +MY_REV="03a5e8a6d1d4" +PYTHON_DEPEND="2" +SUPPORT_PYTHON_ABIS="1" +RESTRICT_PYTHON_ABIS="3.*" + +inherit python + +DESCRIPTION="Command-line interface to paste.pocoo.org" +HOMEPAGE="http://paste.pocoo.org/" +SRC_URI="https://bitbucket.org/skrattaren/lodgeit-script-gentoo/raw/${MY_REV}/scripts/lodgeit.py + -> ${P}.py + vim? ( http://www.vim.org/scripts/download_script.php?src_id=8848 + -> ${P}.vim )" + +LICENSE="BSD MIT" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="vim" + +RESTRICT="test" + +DEPEND="" +RDEPEND=" + vim? ( || ( app-editors/vim[python] app-editors/gvim[python] ) )" + +S="${WORKDIR}" + +src_unpack() { + : +} + +src_install() { + installation(){ + newbin "${DISTDIR}/${P}.py" "${PN}-${PYTHON_ABI}" + python_convert_shebangs ${PYTHON_ABI} "${ED}"/usr/bin/${PN}-${PYTHON_ABI} + } + python_execute_function installation + python_generate_wrapper_scripts "${ED}"/usr/bin/${PN} + + if use vim; then + insinto /usr/share/vim/vimfiles/plugin + newins "${DISTDIR}/${P}.vim" "${PN}.vim" + fi +} |