diff options
Diffstat (limited to 'dev-db/mydumper/mydumper-0.6.2.ebuild')
-rw-r--r-- | dev-db/mydumper/mydumper-0.6.2.ebuild | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/dev-db/mydumper/mydumper-0.6.2.ebuild b/dev-db/mydumper/mydumper-0.6.2.ebuild new file mode 100644 index 000000000000..beedabda0b94 --- /dev/null +++ b/dev-db/mydumper/mydumper-0.6.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit cmake-utils versionator + +DESCRIPTION="A high-performance multi-threaded backup (and restore) toolset for MySQL and Drizzle" +HOMEPAGE="https://launchpad.net/mydumper" +SRC_URI="http://launchpad.net/mydumper/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz" +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="doc" + +RDEPEND="dev-libs/libpcre + virtual/mysql + dev-libs/glib:2" +DEPEND="${RDEPEND} + virtual/pkgconfig + doc? ( <dev-python/sphinx-1.3 )" + +DOCS=( README ) + +src_prepare() { + # respect user cflags; do not expand ${CMAKE_C_FLAGS} (!) + sed -i -e 's:-Werror -O3 -g:${CMAKE_C_FLAGS}:' CMakeLists.txt + # fix doc install path + sed -i -e "s:share/doc/mydumper:share/doc/${PF}:" docs/CMakeLists.txt +} + +src_configure() { + mycmakeargs=( $(cmake-utils_use doc BUILD_DOCS) ) + + cmake-utils_src_configure +} |