johu        14/09/19 17:55:22

  Modified:             ChangeLog
  Added:                qtkeychain-0.4.0.ebuild
  Log:
  Version bump, bug #523234.
  
  (Portage version: 2.2.13/cvs/Linux x86_64, signed Manifest commit with key 
0xF3CFD2BD)

Revision  Changes    Path
1.4                  dev-libs/qtkeychain/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog   17 Apr 2014 20:07:32 -0000      1.3
+++ ChangeLog   19 Sep 2014 17:55:22 -0000      1.4
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/qtkeychain
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v 1.3 
2014/04/17 20:07:32 johu Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/qtkeychain/ChangeLog,v 1.4 
2014/09/19 17:55:22 johu Exp $
+
+*qtkeychain-0.4.0 (19 Sep 2014)
+
+  19 Sep 2014; Johannes Huber <[email protected]> +qtkeychain-0.4.0.ebuild:
+  Version bump, bug #523234.
 
   17 Apr 2014; Johannes Huber <[email protected]>
   -files/qtkeychain-0.1.0-qt5.patch, -qtkeychain-0.1.0.ebuild,



1.1                  dev-libs/qtkeychain/qtkeychain-0.4.0.ebuild

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

Index: qtkeychain-0.4.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/qtkeychain/qtkeychain-0.4.0.ebuild,v 1.1 
2014/09/19 17:55:22 johu Exp $

EAPI=5

inherit cmake-utils multibuild

DESCRIPTION="Qt API for storing passwords securely"
HOMEPAGE="https://github.com/frankosterfeld/qtkeychain";
SRC_URI="https://github.com/frankosterfeld/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="+qt4 qt5"

REQUIRED_USE="|| ( qt4 qt5 )"

RDEPEND="
        qt5? (
                dev-qt/qtcore:5
                dev-qt/qtdbus:5
        )
        qt4? (
                dev-qt/qtcore:4
                dev-qt/qtdbus:4
        )
"
DEPEND="${RDEPEND}
        qt5? ( dev-qt/linguist-tools:5 )
"

DOCS=( ChangeLog ReadMe.txt )

pkg_setup() {
        MULTIBUILD_VARIANTS=()
        if use qt4; then
                MULTIBUILD_VARIANTS+=(qt4)
        fi
        if use qt5; then
                MULTIBUILD_VARIANTS+=(qt5)
        fi
}

src_configure() {
        myconfigure() {
                if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then
                        local mycmakeargs=(-DBUILD_WITH_QT4=ON)
                fi
                if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then
                        local mycmakeargs=(-DBUILD_WITH_QT4=OFF)
                fi
                cmake-utils_src_configure
        }

        multibuild_foreach_variant myconfigure
}

src_compile() {
        multibuild_foreach_variant cmake-utils_src_compile
}

src_install() {
        multibuild_foreach_variant cmake-utils_src_install
}

src_test() {
        multibuild_foreach_variant cmake-utils_src_test
}




Reply via email to