diff options
author | Mart Raudsepp <leio@gentoo.org> | 2006-10-09 14:39:20 +0000 |
---|---|---|
committer | Mart Raudsepp <leio@gentoo.org> | 2006-10-09 14:39:20 +0000 |
commit | 943e138e923206f63438a91d3b7f339011917929 (patch) | |
tree | bf97fd97e63564ab86be8cbd373c8ecc5606d3a1 /net-misc/vino | |
parent | Marking amd64 stable; cleaning up ebuilds (diff) | |
download | gentoo-2-943e138e923206f63438a91d3b7f339011917929.tar.gz gentoo-2-943e138e923206f63438a91d3b7f339011917929.tar.bz2 gentoo-2-943e138e923206f63438a91d3b7f339011917929.zip |
Version bump, closes bug #149532
(Portage version: 2.1.2_pre2-r6)
Diffstat (limited to 'net-misc/vino')
-rw-r--r-- | net-misc/vino/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/vino/files/digest-vino-2.16.0 | 3 | ||||
-rw-r--r-- | net-misc/vino/vino-2.16.0.ebuild | 52 |
3 files changed, 61 insertions, 1 deletions
diff --git a/net-misc/vino/ChangeLog b/net-misc/vino/ChangeLog index 52f361561010..8f084492b287 100644 --- a/net-misc/vino/ChangeLog +++ b/net-misc/vino/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/vino # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v 1.66 2006/09/19 18:11:03 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v 1.67 2006/10/09 14:39:20 leio Exp $ + +*vino-2.16.0 (09 Oct 2006) + + 09 Oct 2006; Mart Raudsepp <leio@gentoo.org> +vino-2.16.0.ebuild: + Version bump, closes bug #149532 19 Sep 2006; Aron Griffis <agriffis@gentoo.org> vino-2.13.5.ebuild: Mark 2.13.5 stable on ia64. #139612 diff --git a/net-misc/vino/files/digest-vino-2.16.0 b/net-misc/vino/files/digest-vino-2.16.0 new file mode 100644 index 000000000000..78f3c8779f63 --- /dev/null +++ b/net-misc/vino/files/digest-vino-2.16.0 @@ -0,0 +1,3 @@ +MD5 89937e6d6cd8f658d037da0a7cfd3f4e vino-2.16.0.tar.bz2 593224 +RMD160 047829b29e078ee46f3c3a16f25c88938e40d2c9 vino-2.16.0.tar.bz2 593224 +SHA256 bcf62f1121fe704a019363467f9182e29931ee6779f3b65e996171f4caa11369 vino-2.16.0.tar.bz2 593224 diff --git a/net-misc/vino/vino-2.16.0.ebuild b/net-misc/vino/vino-2.16.0.ebuild new file mode 100644 index 000000000000..a6aad145af7d --- /dev/null +++ b/net-misc/vino/vino-2.16.0.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2006 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.ebuild,v 1.1 2006/10/09 14:39:20 leio Exp $ + +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 virtual/x11 ) + 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 + + 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 +} |