diff options
author | Pacho Ramos <pacho@gentoo.org> | 2016-10-18 20:34:46 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2016-10-18 21:24:46 +0200 |
commit | 82a8dc750769e85b3800461b9b68c01c93efa7bb (patch) | |
tree | 1a3ccf413bb9d4e7b7dd6c012ae52edd02fbae83 /app-misc | |
parent | app-misc/pysmssend: amd64/x86 stable, bug #593102 (diff) | |
download | gentoo-82a8dc750769e85b3800461b9b68c01c93efa7bb.tar.gz gentoo-82a8dc750769e85b3800461b9b68c01c93efa7bb.tar.bz2 gentoo-82a8dc750769e85b3800461b9b68c01c93efa7bb.zip |
app-misc/pysmssend: Drop old
Package-Manager: portage-2.3.1
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/pysmssend/pysmssend-1.48.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/app-misc/pysmssend/pysmssend-1.48.ebuild b/app-misc/pysmssend/pysmssend-1.48.ebuild deleted file mode 100644 index 08381ddd3d8f..000000000000 --- a/app-misc/pysmssend/pysmssend-1.48.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" -PYTHON_DEPEND="2:2.5" -SUPPORT_PYTHON_ABIS="1" -RESTRICT_PYTHON_ABIS="2.4 3.*" - -inherit distutils eutils - -DESCRIPTION="Python Application for sending sms over multiple ISPs" -HOMEPAGE="http://pysmssend.silverarrow.org/" -SRC_URI="http://pysmssend.silverarrow.org/files/${P}.tar.gz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="qt4" - -DEPEND=">dev-python/mechanize-0.1.7b - qt4? ( dev-python/PyQt4[X] )" -RDEPEND="${DEPEND}" - -PYTHON_MODNAME="pysmssendmod" - -src_prepare() { - python_convert_shebangs -r 2 . -} - -src_install() { - distutils_src_install - if use qt4; then - insinto /usr/share/${PN}/Icons || die "insinto failed" - doins Icons/* || die "doins failed" - doicon Icons/pysmssend.png || die "doicon failed" - dobin pysmssend pysmssendcmd || die "failed to create executables" - make_desktop_entry pysmssend pySMSsend pysmssend \ - "Applications;Network" || die "make_desktop_entry failed" - else - dobin pysmssendcmd || die "failed to create executable" - dosym pysmssendcmd /usr/bin/pysmssend || die "dosym failed" - fi - dodoc README AUTHORS TODO || die "dodoc failed" -} |