diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2012-01-29 18:34:56 +0000 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2012-01-29 18:34:56 +0000 |
commit | 389447eab3e0855c0c2d4974c74269393a8d173e (patch) | |
tree | 5c050593d7999bb82efbc9e85887b1536bb2d3e1 /app-office/libalkimia | |
parent | arm stable, bug #395735 (diff) | |
download | gentoo-2-389447eab3e0855c0c2d4974c74269393a8d173e.tar.gz gentoo-2-389447eab3e0855c0c2d4974c74269393a8d173e.tar.bz2 gentoo-2-389447eab3e0855c0c2d4974c74269393a8d173e.zip |
Version bump, thanks to Jack Ostroff
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'app-office/libalkimia')
-rw-r--r-- | app-office/libalkimia/ChangeLog | 10 | ||||
-rw-r--r-- | app-office/libalkimia/files/libalkimia-4.3.2-doc.patch | 34 | ||||
-rw-r--r-- | app-office/libalkimia/libalkimia-4.3.2.ebuild | 30 |
3 files changed, 72 insertions, 2 deletions
diff --git a/app-office/libalkimia/ChangeLog b/app-office/libalkimia/ChangeLog index 47aadcfac684..092c46e035e1 100644 --- a/app-office/libalkimia/ChangeLog +++ b/app-office/libalkimia/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-office/libalkimia -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/libalkimia/ChangeLog,v 1.7 2011/11/14 11:20:31 flameeyes Exp $ +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/libalkimia/ChangeLog,v 1.8 2012/01/29 18:34:56 dilfridge Exp $ + +*libalkimia-4.3.2 (29 Jan 2012) + + 29 Jan 2012; Andreas K. Huettel <dilfridge@gentoo.org> + +libalkimia-4.3.2.ebuild, +files/libalkimia-4.3.2-doc.patch: + Version bump, thanks to Jack Ostroff 14 Nov 2011; Diego E. Pettenò <flameeyes@gentoo.org> libalkimia-4.3.1.ebuild: QA: cxx conditional was broken, fix it. diff --git a/app-office/libalkimia/files/libalkimia-4.3.2-doc.patch b/app-office/libalkimia/files/libalkimia-4.3.2-doc.patch new file mode 100644 index 000000000000..c88b95b65269 --- /dev/null +++ b/app-office/libalkimia/files/libalkimia-4.3.2-doc.patch @@ -0,0 +1,34 @@ +diff -ruN libalkimia-4.3.1.orig/libalkimia/CMakeLists.txt libalkimia-4.3.1/libalkimia/CMakeLists.txt +--- libalkimia-4.3.1.orig/libalkimia/CMakeLists.txt 2011-08-01 12:14:46.000000000 +0200 ++++ libalkimia-4.3.1/libalkimia/CMakeLists.txt 2011-08-01 23:04:41.000000000 +0200 +@@ -86,6 +86,8 @@ + endif(NOT WIN32) + ########### documentation ################### + ++if(BUILD_DOC) ++ + # check for Doxygen + find_package(Doxygen) + if(DOXYGEN_FOUND) +@@ -95,9 +97,20 @@ + + configure_file(${CMAKE_CURRENT_SOURCE_DIR}/libalkimia.doxygen.in ${CMAKE_CURRENT_BINARY_DIR}/libalkimia.doxygen IMMEDIATE) + +- add_custom_target(libalkimia_apidoc ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/libalkimia.doxygen) ++ add_custom_target(libalkimia_apidoc ALL ${DOXYGEN} ${CMAKE_CURRENT_BINARY_DIR}/libalkimia.doxygen) ++else(DOXYGEN_FOUND) ++ MESSAGE(FATAL_ERROR "API documentation requested but doxygen not found") + endif(DOXYGEN_FOUND) + ++ELSE(BUILD_DOC) ++ ++ MESSAGE(STATUS "") ++ MESSAGE(STATUS "Documentation will NOT be installed") ++ MESSAGE(STATUS "Because the option -DBUILD_DOC=ON wasn't passed to cmake") ++ MESSAGE(STATUS "") ++ ++ENDIF(BUILD_DOC) ++ + ########### tests ################### + + set( alkvaluetest_SRCS alkvaluetest.cpp ) diff --git a/app-office/libalkimia/libalkimia-4.3.2.ebuild b/app-office/libalkimia/libalkimia-4.3.2.ebuild new file mode 100644 index 000000000000..b51dd4735dd5 --- /dev/null +++ b/app-office/libalkimia/libalkimia-4.3.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/libalkimia/libalkimia-4.3.2.ebuild,v 1.1 2012/01/29 18:34:56 dilfridge Exp $ + +EAPI="4" + +inherit kde4-base + +DESCRIPTION="Library with common classes and functionality used by KDE finance applications" +HOMEPAGE="http://kde-apps.org/content/show.php/libalkimia?content=137323" +SRC_URI="http://kde-apps.org/CONTENT/content-files/137323-${P}.tar.bz2" + +LICENSE="LGPL-2.1" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="doc" + +RDEPEND="dev-libs/gmp[cxx]" +DEPEND="${RDEPEND} + dev-util/pkgconfig + doc? ( app-doc/doxygen )" + +PATCHES=( + "${FILESDIR}/${PN}-4.3.2-doc.patch" +) + +src_configure() { + mycmakeargs=( $(cmake-utils_use_build doc) ) + kde4-base_src_configure +} |