kensington    14/09/19 15:45:25

  Modified:             ChangeLog
  Added:                libvncserver-0.9.9-r3.ebuild
  Log:
  Backport patch from upstream solving a segfault when built with USE="-ipv6" 
wrt bug #523156.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
0x06B1F38DCA45A1EC!)

Revision  Changes    Path
1.80                 net-libs/libvncserver/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.80&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?rev=1.80&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/ChangeLog?r1=1.79&r2=1.80

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.79
retrieving revision 1.80
diff -u -r1.79 -r1.80
--- ChangeLog   9 Aug 2014 10:48:03 -0000       1.79
+++ ChangeLog   19 Sep 2014 15:45:25 -0000      1.80
@@ -1,6 +1,13 @@
 # ChangeLog for net-libs/libvncserver
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.79 
2014/08/09 10:48:03 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.80 
2014/09/19 15:45:25 kensington Exp $
+
+*libvncserver-0.9.9-r3 (19 Sep 2014)
+
+  19 Sep 2014; Michael Palimaka <kensing...@gentoo.org>
+  +files/libvncserver-0.9.9-segfault.patch, +libvncserver-0.9.9-r3.ebuild:
+  Backport patch from upstream solving a segfault when built with USE="-ipv6"
+  wrt bug #523156.
 
   09 Aug 2014; Agostino Sarubbo <a...@gentoo.org> libvncserver-0.9.9-r1.ebuild:
   Stable for ppc64, wrt bug #515276



1.1                  net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild?rev=1.1&content-type=text/plain

Index: libvncserver-0.9.9-r3.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/net-libs/libvncserver/libvncserver-0.9.9-r3.ebuild,v 
1.1 2014/09/19 15:45:25 kensington Exp $

EAPI="5"

inherit eutils libtool multilib-minimal

DESCRIPTION="library for creating vnc servers"
HOMEPAGE="http://libvncserver.sourceforge.net/";
SRC_URI="http://libvncserver.sourceforge.net/LibVNCServer-${PV/_}.tar.gz
        mirror://sourceforge/${PN}/LibVNCServer-${PV/_}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
IUSE="+24bpp gcrypt gnutls ipv6 +jpeg +png ssl static-libs test threads +zlib"

REQUIRED_USE="png? ( zlib )"

DEPEND="
        gcrypt? ( >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}] )
        gnutls? (
                >=net-libs/gnutls-2.12.23-r6[${MULTILIB_USEDEP}]
                >=dev-libs/libgcrypt-1.5.3:0[${MULTILIB_USEDEP}]
        )
        !gnutls? (
                ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )
        )
        jpeg? ( >=virtual/jpeg-0-r2[${MULTILIB_USEDEP}] )
        png? ( >=media-libs/libpng-1.6.10:0[${MULTILIB_USEDEP}] )
        zlib? ( >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}] )
"
RDEPEND="${DEPEND}"

S="${WORKDIR}"/LibVNCServer-${PV/_}

DOCS=( AUTHORS ChangeLog NEWS README TODO )

src_prepare() {
        epatch "${FILESDIR}"/${P}-segfault.patch

        sed -i -r \
                -e '/^CFLAGS =/d' \
                -e "/^SUBDIRS/s:\<($(use test || echo 
'test|')client_examples|examples)\>::g" \
                Makefile.in || die

        elibtoolize
}

multilib_src_configure() {
        ECONF_SOURCE=${S} \
        econf \
                --disable-silent-rules \
                --without-x11vnc \
                $(use_enable static-libs static) \
                $(use_with 24bpp) \
                $(use_with gnutls) \
                $(usex gnutls --with-gcrypt $(use_with gcrypt)) \
                $(usex gnutls --without-ssl $(use_with ssl)) \
                $(use_with ipv6) \
                $(use_with jpeg) \
                $(use_with png) \
                $(use_with threads pthread) \
                $(use_with zlib)
}

multilib_src_compile() {
        default
        multilib_is_native_abi && emake -C examples noinst_PROGRAMS=storepasswd
}

multilib_src_install_all() {
        einstalldocs
        prune_libtool_files
}




Reply via email to