summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--net-voip/landell/ChangeLog11
-rw-r--r--net-voip/landell/Manifest2
-rw-r--r--net-voip/landell/landell-9999.ebuild72
3 files changed, 0 insertions, 85 deletions
diff --git a/net-voip/landell/ChangeLog b/net-voip/landell/ChangeLog
deleted file mode 100644
index 252cf4e..0000000
--- a/net-voip/landell/ChangeLog
+++ /dev/null
@@ -1,11 +0,0 @@
-# ChangeLog for net-voip/landell
-# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/skel.ChangeLog,v 1.2 2006/02/22 02:08:04 hd_brummy Exp $
-
- 06 Jun 2007; Santiago M. Mola <gentoo@coldwind.org> landell-9999.ebuild:
- Fix sandbox violations.
-
- 04 Jun 2007; Santiago M. Mola <gentoo@coldwind.org>
- -landell-0.1_pre20060830.ebuild, +landell-9999.ebuild:
- Live SVN ebuild. Broken.
-
diff --git a/net-voip/landell/Manifest b/net-voip/landell/Manifest
deleted file mode 100644
index c10c82d..0000000
--- a/net-voip/landell/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD landell-9999.ebuild 2114 RMD160 ed8a14fed99845d006c98a92034598b0f1bf7117 SHA1 a6b9eaed75d0fa02fb167b72ae2a07d481dd140d SHA256 939329997543f53052103f1d29460cae059cef804389151faa08a679dd68edf5
-MISC ChangeLog 437 RMD160 508f930ed3ee85eb9fc35043302cb33fd5913eb8 SHA1 0d0f5790417d0cde42cae01b567e4f948da53118 SHA256 2ba8f2390e31b3ad86cd2966911e6283178af1dde6f9eb5980a11cfdbfd9b54c
diff --git a/net-voip/landell/landell-9999.ebuild b/net-voip/landell/landell-9999.ebuild
deleted file mode 100644
index 333ae35..0000000
--- a/net-voip/landell/landell-9999.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-im/tapiocaui/tapiocaui-0.3.0.ebuild,v 1.2 2006/05/22 00:15:21 genstef Exp $
-
-inherit eutils subversion mono
-
-DESCRIPTION="Tapioca telepathy client."
-HOMEPAGE="http://tapioca-voip.sourceforge.net/"
-#SRC_URI="mirror://sourceforge/tapioca-voip/${P}.tar.gz"
-ESVN_REPO_URI="https://landell.svn.sourceforge.net/svnroot/landell/trunk/landell"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~x86"
-IUSE="firefox xulrunner"
-
-DEPEND="net-im/tapiocad
- dev-dotnet/tapioca-sharp
- dev-dotnet/ndesk-dbus
- >=dev-dotnet/gtk-sharp-2.8.2
- >=dev-dotnet/gnome-sharp-2.8.2
- >=dev-dotnet/glade-sharp-2.8.2
- >=dev-dotnet/gconf-sharp-2.8.2
- dev-dotnet/gecko-sharp
- dev-dotnet/gnomevfs-sharp
- gnome-base/gconf
- gnome-base/gnome-common
- media-libs/farsight
- media-libs/gstreamer
- >=media-libs/gst-plugins-base-0.10.5
- xulrunner? ( net-libs/xulrunner )
- !xulrunner? ( firefox? ( www-client/mozilla-firefox )
- !firefox? ( www-client/seamonkey ) )"
-# net-im/tapioca-xmpp
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
- if ! built_with_use dev-dotnet/ndesk-dbus glib ; then
- eerror "${PN} needs dev-dotnet/ndesk-dbus with glib support."
- eerror "Re-emerge dev-dotnet/ndesk-dbus with USE=\"glib\" and"
- eerror "try again."
- die "Re-emerge dev-dotnet/ndesk-dbus with USE=\"glib\""
- fi
-}
-
-src_unpack() {
- subversion_src_unpack
- cd "${S}"
- # Fix sandbox violations
- sed -i -e "s:\ \$(datadir):\ \$(DESTDIR)\$(datadir):g" \
- -e "/touch/d" \
- data/images/Makefile.am || die "sed failed"
- NOCONFIGURE=1 ./autogen.sh || die "./autogen.sh failed"
-}
-
-src_install() {
- local myconf="--with-gtkmozembed="
- if use xulrunner ; then
- myconf="${myconf}xulrunner"
- else
- use firefox && myconf="${myconf}firefox" || myconf="${myconf}mozilla"
- fi
-
- econf ${myconf} || die "econf failed"
- emake DESTDIR="${D}" install || die "make install failed"
-}
-
-pkg_postinst() {
- elog "If you are using kde you need to run"
- elog 'eval `dbus-launch --sh-syntax --exit-with-session`'
- elog "in the same environment where you start ${PN} later"
-}