diff options
author | John N. Laliberte <allanonjl@gentoo.org> | 2006-05-07 14:49:01 +0000 |
---|---|---|
committer | John N. Laliberte <allanonjl@gentoo.org> | 2006-05-07 14:49:01 +0000 |
commit | b40973f2618cf133263f6a61a464558d3e9f56ad (patch) | |
tree | 44ca8629fba5c6afd1a6b2c08a9484d2affd0355 /net-misc/vino | |
parent | Initial import of ebuild written by me. (diff) | |
download | gentoo-2-b40973f2618cf133263f6a61a464558d3e9f56ad.tar.gz gentoo-2-b40973f2618cf133263f6a61a464558d3e9f56ad.tar.bz2 gentoo-2-b40973f2618cf133263f6a61a464558d3e9f56ad.zip |
as-needed patch from TGL <degrenier@easyconnect.fr>, fixes #132558
(Portage version: 2.1_pre10-r3)
Diffstat (limited to 'net-misc/vino')
-rw-r--r-- | net-misc/vino/ChangeLog | 6 | ||||
-rw-r--r-- | net-misc/vino/files/vino-2.13.5-as-needed.patch | 13 | ||||
-rw-r--r-- | net-misc/vino/vino-2.13.5.ebuild | 15 |
3 files changed, 27 insertions, 7 deletions
diff --git a/net-misc/vino/ChangeLog b/net-misc/vino/ChangeLog index 30d39b93c1e9..b69fde727e92 100644 --- a/net-misc/vino/ChangeLog +++ b/net-misc/vino/ChangeLog @@ -1,6 +1,10 @@ # 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.52 2006/05/06 13:03:23 allanonjl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/ChangeLog,v 1.53 2006/05/07 14:49:01 allanonjl Exp $ + + 07 May 2006; John N. Laliberte <allanonjl@gentoo.org> + +files/vino-2.13.5-as-needed.patch, vino-2.13.5.ebuild: + as-needed patch from TGL <degrenier@easyconnect.fr>, fixes #132558 06 May 2006; John N. Laliberte <allanonjl@gentoo.org> vino-2.13.5.ebuild: drop hppa,ia64,mips, bug filed. prep for 2.14 unmask diff --git a/net-misc/vino/files/vino-2.13.5-as-needed.patch b/net-misc/vino/files/vino-2.13.5-as-needed.patch new file mode 100644 index 000000000000..9e6c01fe742b --- /dev/null +++ b/net-misc/vino/files/vino-2.13.5-as-needed.patch @@ -0,0 +1,13 @@ +--- vino-2.13.5/server/libvncserver/Makefile.am.orig 2006-05-07 14:53:51.000000000 +0200 ++++ vino-2.13.5/server/libvncserver/Makefile.am 2006-05-07 14:58:02.000000000 +0200 +@@ -32,6 +32,10 @@ + zrletypes.h \ + $(NULL) + ++libvncserver_la_LIBADD = \ ++ $(LIBGNUTLS_LIBS) \ ++ $(LIBGCRYPT_LIBS) ++ + EXTRA_DIST = \ + tableinit24.c \ + tableinittctemplate.c \ diff --git a/net-misc/vino/vino-2.13.5.ebuild b/net-misc/vino/vino-2.13.5.ebuild index a4e37b93f2e4..de1f9d39acb3 100644 --- a/net-misc/vino/vino-2.13.5.ebuild +++ b/net-misc/vino/vino-2.13.5.ebuild @@ -1,8 +1,8 @@ # 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.13.5.ebuild,v 1.2 2006/05/06 13:03:23 allanonjl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/vino/vino-2.13.5.ebuild,v 1.3 2006/05/07 14:49:01 allanonjl Exp $ -inherit eutils gnome2 +inherit eutils gnome2 autotools DESCRIPTION="An integrated VNC server for GNOME" HOMEPAGE="http://www.gnome.org/" @@ -38,12 +38,15 @@ pkg_setup() { } src_unpack() { - unpack "${A}" - cd "${S}" + gnome2_src_unpack # Fix compilation if --without-libz is passed - epatch ${FILESDIR}/${PN}-2.11-zlib_fix.patch + epatch "${FILESDIR}"/${PN}-2.11-zlib_fix.patch # Fix compilation for Gentoo/FreeBSD - epatch ${FILESDIR}/${PN}-2.10.0-fbsd.patch + epatch "${FILESDIR}"/${PN}-2.10.0-fbsd.patch + + # fix as-needed #132558 + epatch "${FILESDIR}"/${P}-as-needed.patch + eautoreconf } |