forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mydumper-0.9.3-r1.ebuild
42 lines (32 loc) · 1 KB
/
mydumper-0.9.3-r1.ebuild
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit cmake-utils
DESCRIPTION="A high-performance multi-threaded backup (and restore) toolset for MySQL"
HOMEPAGE="https://github.com/maxbube/mydumper"
SRC_URI="https://github.com/maxbube/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
CDEPEND="dev-libs/glib:=
dev-libs/libpcre:=
dev-libs/openssl:=
sys-libs/zlib:=
virtual/mysql"
DEPEND="${CDEPEND}
virtual/pkgconfig
doc? ( dev-python/sphinx )"
RDEPEND="${CDEPEND}"
PATCHES=( "${FILESDIR}/${PN}-mariadb-define.patch" )
src_prepare() {
# respect user cflags; do not expand ${CMAKE_C_FLAGS} (!)
sed -i -e 's:-Werror -O3 -g:${CMAKE_C_FLAGS}:' CMakeLists.txt || die
# fix doc install path
sed -i -e "s:share/doc/mydumper:share/doc/${PF}:" docs/CMakeLists.txt || die
cmake-utils_src_prepare
}
src_configure() {
local mycmakeargs=("-DBUILD_DOCS=$(usex doc)")
cmake-utils_src_configure
}