pinkbyte    15/01/30 08:38:10

  Modified:             ChangeLog
  Added:                nanomsg-0.5-r1.ebuild
  Log:
  Revision bump: use multilib-aware eclasses, wrt bug #537038. Build and 
install manpages, wrt bug #526258
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
0x1F357D42)

Revision  Changes    Path
1.13                 dev-libs/nanomsg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nanomsg/ChangeLog?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nanomsg/ChangeLog?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nanomsg/ChangeLog?r1=1.12&r2=1.13

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   19 Jan 2015 11:22:22 -0000      1.12
+++ ChangeLog   30 Jan 2015 08:38:10 -0000      1.13
@@ -1,6 +1,12 @@
 # ChangeLog for dev-libs/nanomsg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v 1.12 
2015/01/19 11:22:22 pinkbyte Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/ChangeLog,v 1.13 
2015/01/30 08:38:10 pinkbyte Exp $
+
+*nanomsg-0.5-r1 (30 Jan 2015)
+
+  30 Jan 2015; Sergey Popov <[email protected]> +nanomsg-0.5-r1.ebuild:
+  Revision bump: use multilib-aware eclasses, wrt bug #537038. Build and
+  install manpages, wrt bug #526258
 
   19 Jan 2015; Sergey Popov <[email protected]> nanomsg-0.5.ebuild:
   Add ~mips/~ppc/~ppc64/~s390 keywords, wrt bug #536804



1.1                  dev-libs/nanomsg/nanomsg-0.5-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nanomsg/nanomsg-0.5-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/nanomsg/nanomsg-0.5-r1.ebuild?rev=1.1&content-type=text/plain

Index: nanomsg-0.5-r1.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/nanomsg/nanomsg-0.5-r1.ebuild,v 1.1 
2015/01/30 08:38:10 pinkbyte Exp $

EAPI=5

AUTOTOOLS_AUTORECONF=1
inherit autotools-multilib

DESCRIPTION="High-performance messaging interface for distributed applications"
HOMEPAGE="http://nanomsg.org/";
SRC_URI="http://download.nanomsg.org/${P}-beta.tar.gz";

LICENSE="MIT"
SLOT="0/0.2.1"
KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~s390 ~x86"
IUSE="doc static-libs"

DEPEND="doc? (
                app-text/asciidoc
                app-text/xmlto
        )"
RDEPEND=""

S="${WORKDIR}/${P}-beta"

src_prepare() {
        sed -i -e 's/doc_DATA/html_DATA/' Makefile.am || die

        autotools-multilib_src_prepare
}

multilib_src_configure() {
        local myeconfargs=(
                --htmldir "/usr/share/doc/${PF}/html"
        )
        if multilib_is_native_abi; then
                myeconfargs+=(
                        $(use_enable doc)
                )
        else
                myeconfargs+=(
                        --disable-doc
                        --disable-nanocat
                        --disable-symlinks
                )
        fi
        autotools-utils_src_configure
}




Reply via email to