40 lines
1.1 KiB
Bash
40 lines
1.1 KiB
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-db/mydumper/mydumper-0.5.1.ebuild,v 1.1 2011/11/05 12:25:26 flameeyes Exp $
|
|
|
|
EAPI=2
|
|
inherit cmake-utils versionator
|
|
|
|
DESCRIPTION="A high-performance multi-threaded backup (and restore) toolset for MySQL and Drizzle"
|
|
HOMEPAGE="http://www.mydumper.org/"
|
|
SRC_URI="http://launchpad.net/mydumper/$(get_version_component_range 1-2)/${PV}/+download/${P}.tar.gz"
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="dev-libs/libpcre
|
|
virtual/mysql
|
|
dev-libs/glib:2"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig
|
|
doc? ( dev-python/sphinx )"
|
|
|
|
DOCS=( README )
|
|
|
|
src_prepare() {
|
|
# respect user cflags; do not expand ${CMAKE_C_FLAGS} (!)
|
|
sed -i -e 's:-W.*-g:${CMAKE_C_FLAGS}:' CMakeLists.txt
|
|
# fix doc install path
|
|
sed -i -e "s:share/doc/mydumper:share/doc/${PF}:" docs/CMakeLists.txt
|
|
}
|
|
|
|
src_compile() {
|
|
cp "${CMAKE_BUILD_DIR}/config.h" "${CMAKE_USE_DIR}" || die
|
|
}
|
|
|
|
src_configure() {
|
|
mycmakeargs=( $(cmake-utils_use doc BUILD_DOCS) )
|
|
|
|
cmake-utils_src_configure
|
|
}
|