summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMart Raudsepp <leio@gentoo.org>2008-02-02 00:05:03 +0000
committerMart Raudsepp <leio@gentoo.org>2008-02-02 00:05:03 +0000
commita7d2d209792cbdfcf11cbc0924a88b733a301213 (patch)
tree9d473d4f07478cf22d58529044288d4d6aebbec2 /net-misc/vino/vino-2.16.0-r1.ebuild
parentremove old (diff)
downloadgentoo-2-a7d2d209792cbdfcf11cbc0924a88b733a301213.tar.gz
gentoo-2-a7d2d209792cbdfcf11cbc0924a88b733a301213.tar.bz2
gentoo-2-a7d2d209792cbdfcf11cbc0924a88b733a301213.zip
remove old
(Portage version: 2.1.4)
Diffstat (limited to 'net-misc/vino/vino-2.16.0-r1.ebuild')
-rw-r--r--net-misc/vino/vino-2.16.0-r1.ebuild57
1 files changed, 0 insertions, 57 deletions
diff --git a/net-misc/vino/vino-2.16.0-r1.ebuild b/net-misc/vino/vino-2.16.0-r1.ebuild
deleted file mode 100644
index 3986575cc6d1..000000000000
--- a/net-misc/vino/vino-2.16.0-r1.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/vino-2.16.0-r1.ebuild,v 1.3 2007/08/25 14:34:26 vapier Exp $
-
-WANT_AUTOCONF=latest
-WANT_AUTOMAKE=1.9
-inherit eutils gnome2 autotools
-
-DESCRIPTION="An integrated VNC server for GNOME"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
-IUSE="avahi crypt gnutls jpeg zlib"
-
-RDEPEND=">=x11-libs/gtk+-2
- >=gnome-base/gconf-2
- >=gnome-base/libglade-2
- >=gnome-base/libgnomeui-2.5.2
- >=gnome-base/orbit-2
- >=gnome-base/libbonobo-2
- x11-libs/libXtst
- avahi? ( >=net-dns/avahi-0.6 )
- crypt? ( >=dev-libs/libgcrypt-1.1.90 )
- gnutls? ( >=net-libs/gnutls-1 )
- jpeg? ( media-libs/jpeg )
- zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.9
- >=dev-util/intltool-0.35"
-
-DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
-
-pkg_setup() {
- if use avahi && ! built_with_use net-dns/avahi dbus; then
- einfo "avahi support in vino requires USE=dbus in avahi"
- die "Please rebuild net-dns/avahi with USE=dbus"
- fi
- G2CONF="$(use_with jpeg) $(use_enable gnutls) $(use_enable crypt gcrypt) \
- $(use_with zlib) $(use_with zlib libz) $(use_enable avahi) \
- --enable-session-support"
-}
-
-src_unpack() {
- gnome2_src_unpack
-
- # Don't forget server password. Bug #162905
- epatch "${FILESDIR}"/${P}-keep-password.patch
-
- cp aclocal.m4 old_macros.m4
- # rename some things so they get regenerated and we don't get a mismatch
- sed -i -e 's:AM_AUTOMAKE_VERSION:AM_AUTOMAKE_VERSION2:' old_macros.m4
- sed -i -e 's:AM_INIT_AUTOMAKE:AM_INIT_AUTOMAKE2:' old_macros.m4
- sed -i -e 's:AM_SET_CURRENT_AUTOMAKE_VERSION:AM_SET_CURRENT_AUTOMAKE_VERSION2:' old_macros.m4
- AT_M4DIR="." eautoreconf
-}