mgorny      14/06/11 19:54:27

  Modified:             ChangeLog
  Added:                cmocka-0.3.1-r1.ebuild
  Log:
  Enable multilib support.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
EFB4464E!)

Revision  Changes    Path
1.13                 dev-util/cmocka/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- ChangeLog   16 Mar 2014 11:15:12 -0000      1.12
+++ ChangeLog   11 Jun 2014 19:54:27 -0000      1.13
@@ -1,6 +1,11 @@
 # ChangeLog for dev-util/cmocka
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v 1.12 2014/03/16 
11:15:12 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/ChangeLog,v 1.13 2014/06/11 
19:54:27 mgorny Exp $
+
+*cmocka-0.3.1-r1 (11 Jun 2014)
+
+  11 Jun 2014; Michał Górny <[email protected]> +cmocka-0.3.1-r1.ebuild:
+  Enable multilib support.
 
   16 Mar 2014; Agostino Sarubbo <[email protected]> cmocka-0.3.1.ebuild:
   Stable for ppc64, wrt bug #503504



1.1                  dev-util/cmocka/cmocka-0.3.1-r1.ebuild

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

Index: cmocka-0.3.1-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/cmocka/cmocka-0.3.1-r1.ebuild,v 1.1 
2014/06/11 19:54:27 mgorny Exp $

EAPI=5

inherit cmake-multilib

DESCRIPTION="A unit testing framework for C"
HOMEPAGE="http://cmocka.org/";
SRC_URI="https://open.cryptomilk.org/attachments/download/19/${P}.tar.gz";

LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
IUSE="doc static-libs test"

DEPEND="
        doc? ( app-doc/doxygen[latex] )
"
RDEPEND=""

PATCHES=( "${FILESDIR}/${PN}-automagicness.patch" )

multilib_src_configure() {
        local mycmakeargs=(
                $(cmake-utils_use_with static-libs STATIC_LIB)
                $(cmake-utils_use test UNIT_TESTING)
                $(multilib_is_native_abi && cmake-utils_use_with doc APIDOC \
                        || echo -DWITH_APIDOC=OFF)
        )
        cmake-utils_src_configure
}

multilib_src_install() {
        if multilib_is_native_abi && use doc; then
                pushd doc || die
                doxygen doxy.config || die
                rm -f html/*.md5 latex/*.md5 latex/Manifest man/man3/_* || die
                dohtml html/*
                dodoc latex/*
                doman man/man3/*.3
                popd || die
        fi
        cmake-utils_src_install
}




Reply via email to