diff options
author | Michael Weber <xmw@gentoo.org> | 2013-03-23 13:29:53 +0000 |
---|---|---|
committer | Michael Weber <xmw@gentoo.org> | 2013-03-23 13:29:53 +0000 |
commit | 448966a065f431594061c2bd95059d8798cf7d73 (patch) | |
tree | e4297c9aeae3296959794ea0a817b2e0e7e18451 /app-admin/elektra | |
parent | Stable for alpha, wrt bug #462648 (diff) | |
download | gentoo-2-448966a065f431594061c2bd95059d8798cf7d73.tar.gz gentoo-2-448966a065f431594061c2bd95059d8798cf7d73.tar.bz2 gentoo-2-448966a065f431594061c2bd95059d8798cf7d73.zip |
Revbump to fix FindElektra.cmake install path, switch to cmake-multilib
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'app-admin/elektra')
-rw-r--r-- | app-admin/elektra/ChangeLog | 9 | ||||
-rw-r--r-- | app-admin/elektra/elektra-0.8.3-r1.ebuild | 74 |
2 files changed, 81 insertions, 2 deletions
diff --git a/app-admin/elektra/ChangeLog b/app-admin/elektra/ChangeLog index d569138a75ae..bfb26dea8d08 100644 --- a/app-admin/elektra/ChangeLog +++ b/app-admin/elektra/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/elektra -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/elektra/ChangeLog,v 1.10 2012/11/04 12:01:55 xmw Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/elektra/ChangeLog,v 1.11 2013/03/23 13:29:53 xmw Exp $ + +*elektra-0.8.3-r1 (23 Mar 2013) + + 23 Mar 2013; Michael Weber <xmw@gentoo.org> +elektra-0.8.3-r1.ebuild: + Revbump to fix FindElektra.cmake install path, switch to cmake-multilib 04 Nov 2012; Michael Weber <xmw@gentoo.org> elektra-0.7.1-r2.ebuild, elektra-0.8.3.ebuild: diff --git a/app-admin/elektra/elektra-0.8.3-r1.ebuild b/app-admin/elektra/elektra-0.8.3-r1.ebuild new file mode 100644 index 000000000000..8a206e23340b --- /dev/null +++ b/app-admin/elektra/elektra-0.8.3-r1.ebuild @@ -0,0 +1,74 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/elektra/elektra-0.8.3-r1.ebuild,v 1.1 2013/03/23 13:29:53 xmw Exp $ + +EAPI=5 + +inherit cmake-multilib eutils + +DESCRIPTION="universal and secure framework to store config parameters in a hierarchical key-value pair mechanism" +HOMEPAGE="http://freedesktop.org/wiki/Software/Elektra" +SRC_URI="ftp://ftp.markus-raab.org/${PN}/releases/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="dbus doc examples iconv inifile simpleini static-libs syslog tcl test xml yajl" + +RDEPEND="dev-libs/libxml2" +DEPEND="${RDEPEND} + sys-devel/libtool + doc? ( app-doc/doxygen ) + iconv? ( virtual/libiconv ) + test? ( dev-libs/libxml2[static-libs] ) + yajl? ( <dev-libs/yajl-2 )" + +src_configure() { + local my_plugins="ccode;dump;error;fstab;glob;hexcode;hidden;hosts;network;ni;null;path;resolver;struct;success;template;timeofday;tracer;type;validation" + + #fix QA issues with upstream patches + epatch "${FILESDIR}/${P}-introduce-attributes.patch" + epatch "${FILESDIR}/${P}-fix-yajl-if-user-config.patch" + + #move doc files to correct location + sed -e "s/elektra-api/${PF}/" \ + -i cmake/ElektraCache.cmake || die + + use dbus && my_plugins+=";dbus" + use doc && my_plugins+=";doc" + use iconv && my_plugins+=";iconv" + use inifile && my_plugins+=";simpleini" + use syslog && my_plugins+=";syslog" + use tcl && my_plugins+=";tcl" + use xml && my_plugins+=";xmltool" + use yajl && my_plugins+=";yajl" + + mycmakeargs=( + "-DPLUGINS=${my_plugins}" + "-DLATEX_COMPILER=OFF" + "-DTARGET_CMAKE_FOLDER=share/cmake/Modules" + $(cmake-utils_use doc BUILD_DOCUMENTATION) + $(cmake-utils_use examples BUILD_EXAMPLES) + $(cmake-utils_use static-libs BUILD_STATIC) + $(cmake-utils_use test BUILD_TESTING) + ) + + cmake-multilib_src_configure +} + +src_install() { + cmake-multilib_src_install + + dodoc doc/{AUTHORS,CHANGES,NEWS,README,todo/TODO} + + if use doc ; then + rm -rf "${D}/usr/share/doc/${PF}/man" || die + pushd ${CMAKE_BUILD_DIR}/doc/man/man3 + local my_f + for my_f in *.3 ; do + newman ${my_f} ${PN}-${my_f} + elog "installed /usr/share/man/man3/${my_f} as ${PN}-${my_f}" + done + popd + fi +} |