summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlin Năstac <mrness@gentoo.org>2009-01-17 14:27:14 +0000
committerAlin Năstac <mrness@gentoo.org>2009-01-17 14:27:14 +0000
commit9e63cd4a53024d1c589ef704cb4e1b88d27650ec (patch)
tree092baff70c4b68e9918a86502cf704fa673f8da7 /app-mobilephone/wammu
parentVersion bump. (diff)
downloadgentoo-2-9e63cd4a53024d1c589ef704cb4e1b88d27650ec.tar.gz
gentoo-2-9e63cd4a53024d1c589ef704cb4e1b88d27650ec.tar.bz2
gentoo-2-9e63cd4a53024d1c589ef704cb4e1b88d27650ec.zip
Remove obsolete version.
(Portage version: 2.1.4.5)
Diffstat (limited to 'app-mobilephone/wammu')
-rw-r--r--app-mobilephone/wammu/ChangeLog7
-rw-r--r--app-mobilephone/wammu/wammu-0.25.ebuild76
2 files changed, 5 insertions, 78 deletions
diff --git a/app-mobilephone/wammu/ChangeLog b/app-mobilephone/wammu/ChangeLog
index 9feae54b7a57..ae905cc507f0 100644
--- a/app-mobilephone/wammu/ChangeLog
+++ b/app-mobilephone/wammu/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-mobilephone/wammu
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.34 2008/11/05 19:57:09 maekke Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/ChangeLog,v 1.35 2009/01/17 14:27:14 mrness Exp $
+
+ 17 Jan 2009; Alin Năstac <mrness@gentoo.org> -wammu-0.25.ebuild:
+ Remove obsolete version.
05 Nov 2008; Markus Meier <maekke@gentoo.org> wammu-0.27.ebuild:
amd64/x86 stable, bug #231597
diff --git a/app-mobilephone/wammu/wammu-0.25.ebuild b/app-mobilephone/wammu/wammu-0.25.ebuild
deleted file mode 100644
index 2cd73ae1e623..000000000000
--- a/app-mobilephone/wammu/wammu-0.25.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-mobilephone/wammu/wammu-0.25.ebuild,v 1.3 2008/04/27 19:53:12 maekke Exp $
-
-inherit distutils eutils versionator
-
-DESCRIPTION="front-end for gammu (Nokia and other mobiles)"
-HOMEPAGE="http://www.cihar.com/gammu/wammu/"
-SRC_URI="http://dl.cihar.com/wammu/v0/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="bluetooth"
-
-RDEPEND="=dev-python/wxpython-2.6*
- >=dev-python/python-gammu-0.24
- bluetooth? (
- || (
- dev-python/pybluez
- net-wireless/gnome-bluetooth
- )
- )"
-DEPEND="${RDEPEND}"
-
-# Supported languages and translated documentation
-# Be sure all languages are prefixed with a single space!
-MY_AVAILABLE_LINGUAS=" af ca cs de es et fi fr hu it ko nl pl pt_BR ru sk sv zh_CN"
-IUSE="${IUSE} ${MY_AVAILABLE_LINGUAS// / linguas_}"
-
-src_unpack() {
- unpack ${A}
-
- # Select the suitable wxpython versions
- local wxpy_pkg wxpy_slot MY_WXPYTHON_SLOTS
- for wxpy_pkg in $(portageq match "${ROOT}" '=dev-python/wxpython-2.6*'); do
- if built_with_use --hidden --missing false =${wxpy_pkg} unicode ; then
- wxpy_slot=$(get_version_component_range 1-2 ${wxpy_pkg#*/*-})
- if [ -z "${MY_WXPYTHON_SLOTS}" ]; then
- MY_WXPYTHON_SLOTS="'${wxpy_slot}'"
- else
- MY_WXPYTHON_SLOTS="${MY_WXPYTHON_SLOTS}, '${wxpy_slot}'"
- fi
- fi
- done
- if [ -z "${MY_WXPYTHON_SLOTS}" ]; then
- eerror "None of the dev-python/wxpython installed versions have been built with Unicode support."
- eerror "Install wxpython with unicode USE flag enabled and try again."
- die "dev-python/wxpython is missing Unicode support"
- fi
-
- cd "${S}"
- sed -e "s/WXPYTHON_VER/${MY_WXPYTHON_SLOTS}/" \
- "${FILESDIR}"/${PN}-wxversion.patch \
- > "${T}"/${PN}-wxversion.patch
- epatch "${T}"/${PN}-wxversion.patch
-
- cd locale || die "locale directory not found"
- local lang
- for lang in ${MY_AVAILABLE_LINGUAS} ; do
- if ! use linguas_${lang} ; then
- rm -r ${lang}
- fi
- done
-}
-
-src_compile() {
- # SKIPWXCHECK: else 'import wx' results in
- # Xlib: connection to ":0.0" refused by server
- SKIPWXCHECK=yes distutils_src_compile
-}
-
-src_install() {
- DOCS="AUTHORS FAQ NEWS"
- SKIPWXCHECK=yes distutils_src_install
-}