aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2010-10-18 09:06:58 +0100
committerMarkos Chandras <hwoarang@gentoo.org>2010-10-18 09:06:58 +0100
commit071b3ea9150259ef9d10e38ee58b1f6c15e0caed (patch)
tree6c3020d7141967789e9daa85f50575fafa10be36 /app-misc
parent[net-libs/qmf] Add 'debug' USE flag, update patch. (diff)
downloadqt-071b3ea9150259ef9d10e38ee58b1f6c15e0caed.tar.gz
qt-071b3ea9150259ef9d10e38ee58b1f6c15e0caed.tar.bz2
qt-071b3ea9150259ef9d10e38ee58b1f6c15e0caed.zip
pysmssend-9999:Moved to tree
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/pysmssend/Manifest2
-rw-r--r--app-misc/pysmssend/metadata.xml9
-rw-r--r--app-misc/pysmssend/pysmssend-9999.ebuild44
3 files changed, 0 insertions, 55 deletions
diff --git a/app-misc/pysmssend/Manifest b/app-misc/pysmssend/Manifest
deleted file mode 100644
index fd70b682..00000000
--- a/app-misc/pysmssend/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD pysmssend-9999.ebuild 1162 RMD160 3f856e0be432cb5de619d183d62ba4ee1760f84f SHA1 fe89826fb3d3c2c7f46c917466648ee6fe4d7d14 SHA256 ce25522bbe9c4b8b11c154de58ea626fabc7b3bfbcb3427949d5232a56a9ea5f
-MISC metadata.xml 246 RMD160 e1161b15109a551aedf140096717e4f2aabe91db SHA1 58ace127a667d85dccb74c0173265614f41966d0 SHA256 e98b30289d1338d45a49b94a79d695a752417e25d2bb3525971d59c16266c4c7
diff --git a/app-misc/pysmssend/metadata.xml b/app-misc/pysmssend/metadata.xml
deleted file mode 100644
index eabd7789..00000000
--- a/app-misc/pysmssend/metadata.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-<herd>qt</herd>
-<maintainer>
-<email>hwoarang@gentoo.org</email>
-<name>Markos Chandras</name>
-</maintainer>
-</pkgmetadata>
diff --git a/app-misc/pysmssend/pysmssend-9999.ebuild b/app-misc/pysmssend/pysmssend-9999.ebuild
deleted file mode 100644
index d7c60124..00000000
--- a/app-misc/pysmssend/pysmssend-9999.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-PYTHON_DEPEND="2:2.5"
-
-EAPI="2"
-
-inherit distutils eutils python multilib git
-
-DESCRIPTION="Python Application for sending sms over multiple ISPs"
-HOMEPAGE="http://pysmssend.sourceforge.net/"
-EGIT_REPO_URI="git://github.com/hwoarang/pysmssend.git"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS=""
-IUSE="qt4"
-
-RDEPEND="${DEPEND}
- >=dev-python/mechanize-0.1.9
- qt4? ( >=dev-python/PyQt4-4.3[X] )"
-
-S="${WORKDIR}/pysmssend"
-
-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"
-}