mgorny      14/06/17 17:11:38

  Modified:             ChangeLog
  Added:                libvncserver-0.9.9-r2.ebuild
  Log:
  Enable multilib support, needed for dev-libs/libnsfb.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.76                 net-libs/libvncserver/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog   1 Mar 2014 22:38:07 -0000       1.75
+++ ChangeLog   17 Jun 2014 17:11:38 -0000      1.76
@@ -1,6 +1,11 @@
 # 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.75 
2014/03/01 22:38:07 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/libvncserver/ChangeLog,v 1.76 
2014/06/17 17:11:38 mgorny Exp $
+
+*libvncserver-0.9.9-r2 (17 Jun 2014)
+
+  17 Jun 2014; Michał Górny <[email protected]> +libvncserver-0.9.9-r2.ebuild:
+  Enable multilib support, needed for dev-libs/libnsfb.
 
   01 Mar 2014; Michał Górny <[email protected]> libvncserver-0.9.8.2-r2.ebuild,
   libvncserver-0.9.9-r1.ebuild, libvncserver-0.9.9.ebuild:



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

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

Index: libvncserver-0.9.9-r2.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-r2.ebuild,v 
1.1 2014/06/17 17:11:38 mgorny 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:0[${MULTILIB_USEDEP}] )
        gnutls? (
                net-libs/gnutls[${MULTILIB_USEDEP}]
                dev-libs/libgcrypt:0[${MULTILIB_USEDEP}]
        )
        !gnutls? (
                ssl? ( dev-libs/openssl[${MULTILIB_USEDEP}] )
        )
        jpeg? ( virtual/jpeg[${MULTILIB_USEDEP}] )
        png? ( media-libs/libpng:0[${MULTILIB_USEDEP}] )
        zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
"
RDEPEND="${DEPEND}"

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

DOCS=( AUTHORS ChangeLog NEWS README TODO )

src_prepare() {
        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