summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSantiago M. Mola <coldwind@gentoo.org>2008-05-28 21:04:18 +0000
committerSantiago M. Mola <coldwind@gentoo.org>2008-05-28 21:04:18 +0000
commitf671d28411612f90e037a222a36cd248896ac718 (patch)
treef14249b8dab3f029ffb3406d5b3a27a192c0560a /dev-util/telepathy-inspector
parentRemove old version. (diff)
downloadgentoo-2-f671d28411612f90e037a222a36cd248896ac718.tar.gz
gentoo-2-f671d28411612f90e037a222a36cd248896ac718.tar.bz2
gentoo-2-f671d28411612f90e037a222a36cd248896ac718.zip
Remove old version.
(Portage version: 2.1.4.4)
Diffstat (limited to 'dev-util/telepathy-inspector')
-rw-r--r--dev-util/telepathy-inspector/ChangeLog7
-rw-r--r--dev-util/telepathy-inspector/files/telepathy-inspector-0.5.0-scons.patch69
-rw-r--r--dev-util/telepathy-inspector/telepathy-inspector-0.5.0.ebuild46
3 files changed, 6 insertions, 116 deletions
diff --git a/dev-util/telepathy-inspector/ChangeLog b/dev-util/telepathy-inspector/ChangeLog
index 76439c3c3c7c..9e921b28b289 100644
--- a/dev-util/telepathy-inspector/ChangeLog
+++ b/dev-util/telepathy-inspector/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/telepathy-inspector
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/telepathy-inspector/ChangeLog,v 1.5 2008/04/10 11:26:45 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/telepathy-inspector/ChangeLog,v 1.6 2008/05/28 21:04:17 coldwind Exp $
+
+ 28 May 2008; Santiago M. Mola <coldwind@gentoo.org>
+ -files/telepathy-inspector-0.5.0-scons.patch,
+ -telepathy-inspector-0.5.0.ebuild:
+ Remove old version.
*telepathy-inspector-0.5.2 (10 Apr 2008)
diff --git a/dev-util/telepathy-inspector/files/telepathy-inspector-0.5.0-scons.patch b/dev-util/telepathy-inspector/files/telepathy-inspector-0.5.0-scons.patch
deleted file mode 100644
index a4f0b55449ff..000000000000
--- a/dev-util/telepathy-inspector/files/telepathy-inspector-0.5.0-scons.patch
+++ /dev/null
@@ -1,69 +0,0 @@
-diff -ur telepathy-inspector-0.5.0.orig/data/SConscript telepathy-inspector-0.5.0/data/SConscript
---- telepathy-inspector-0.5.0.orig/data/SConscript 2007-06-27 12:10:15.000000000 +0200
-+++ telepathy-inspector-0.5.0/data/SConscript 2007-06-27 12:10:48.000000000 +0200
-@@ -27,7 +27,8 @@
-
- Import ('env')
-
--install_dir = os.path.join (env['PREFIX'], 'share', 'telepathy-inspector')
-+_r = lambda p: (p[0] == '/') and p[1:] or p
-+install_dir = os.path.join('/', env['DESTDIR'], _r(env['PREFIX']), 'share', 'telepathy-inspector')
-
- data_install = env.Install (install_dir, data_files)
- env.Alias ('install', data_install)
-diff -ur telepathy-inspector-0.5.0.orig/SConstruct telepathy-inspector-0.5.0/SConstruct
---- telepathy-inspector-0.5.0.orig/SConstruct 2007-06-27 12:10:15.000000000 +0200
-+++ telepathy-inspector-0.5.0/SConstruct 2007-07-06 19:53:53.000000000 +0200
-@@ -1,5 +1,6 @@
- import os
- from build_functions import CheckPKGConfig, CheckPKG, CheckPackages, SaveDictionary
-+from SCons.Util import CLVar
-
- SConsignFile()
-
-@@ -21,7 +22,8 @@
-
- # Get our configuration options:
- opts = Options(options_filename)
--opts.Add('PREFIX', 'Directory to install under', '/usr/local')
-+opts.Add('PREFIX', 'A prefix for all paths', '/usr/local')
-+opts.Add('DESTDIR', 'Directory to install under', '')
- opts.Add(BoolOption('CONFIGURE', 'Whether the build should be (re)configured', 'yes'))
- opts.Add(BoolOption('DEBUG', 'Whether debugging information should be produced', 'no'))
- opts.Update(env)
-@@ -29,16 +31,18 @@
-
- Help(opts.GenerateHelpText(env))
-
--# Compiler options
-+# Compiler and linker flags
-
--if env['CC'] == 'gcc':
-+if os.environ.has_key('CFLAGS'):
-+ env['CCFLAGS'] += CLVar(os.environ['CFLAGS'])
-+if os.environ.has_key('LDFLAGS'):
-+ env['LINKFLAGS'] += CLVar(os.environ['LDFLAGS'])
-
-+if env['CC'] == 'gcc':
- env['CCFLAGS'] += ' -Wall -Werror'
--
- if env['DEBUG'] == True:
- env['CCFLAGS'] += ' -g'
-
--
- # Configuration:
-
- if env['CONFIGURE'] == True:
-diff -ur telepathy-inspector-0.5.0.orig/src/SConscript telepathy-inspector-0.5.0/src/SConscript
---- telepathy-inspector-0.5.0.orig/src/SConscript 2007-06-27 12:10:14.000000000 +0200
-+++ telepathy-inspector-0.5.0/src/SConscript 2007-06-27 12:11:00.000000000 +0200
-@@ -45,7 +45,8 @@
-
- Import ('env options_filename')
-
--install_dir = os.path.join (env['PREFIX'], 'bin')
-+_r = lambda p: (p[0] == '/') and p[1:] or p
-+install_dir = os.path.join('/', env['DESTDIR'], _r(env['PREFIX']), 'bin')
-
- env.Command('ti-signals-marshal.c', 'ti-signals-marshal.list', 'glib-genmarshal --body --prefix=ti_marshal $SOURCE > $TARGET')
- env.Command('ti-signals-marshal.h', 'ti-signals-marshal.list', 'glib-genmarshal --header --prefix=ti_marshal $SOURCE > $TARGET')
diff --git a/dev-util/telepathy-inspector/telepathy-inspector-0.5.0.ebuild b/dev-util/telepathy-inspector/telepathy-inspector-0.5.0.ebuild
deleted file mode 100644
index 8f25721048a3..000000000000
--- a/dev-util/telepathy-inspector/telepathy-inspector-0.5.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/telepathy-inspector/telepathy-inspector-0.5.0.ebuild,v 1.3 2008/01/13 14:59:09 coldwind Exp $
-
-inherit eutils flag-o-matic
-
-DESCRIPTION="The swiss-army knife of every Telepathy developer."
-HOMEPAGE="http://telepathy.freedesktop.org/wiki/TelepathyInspector"
-SRC_URI="mirror://sourceforge/tapioca-voip/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-RDEPEND=">=dev-libs/glib-2
- >=x11-libs/gtk+-2
- gnome-base/libglade
- dev-libs/dbus-glib"
-DEPEND="${RDEPEND}
- dev-util/scons
- dev-util/pkgconfig"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}/${P}-scons.patch"
-}
-
-src_compile() {
- replace-flags -O? -O1
-
- local myopts
- if use debug ; then
- myopts="DEBUG=yes"
- else
- myopts="DEBUG=no"
- fi
- scons CONFIGURE=yes DESTDIR="${D}" PREFIX=/usr \
- ${myopts} || die "scons failed"
-}
-
-src_install() {
- scons install || die "scons install failed"
- dodoc README ChangeLog || die "dodoc failed"
-}