summaryrefslogtreecommitdiff
blob: 25bfe1b274e0ee00a77877448ec74d2164200fc7 (plain)
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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

inherit toolchain-funcs

KEYWORDS="~x86"

DESCRIPTION="Another C++ wrapper for the MySQL C API"
HOMEPAGE="http://www.alhem.net/project/mysql/index.html"
SRC_URI="http://www.alhem.net/project/mysql/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""

DEPEND="virtual/mysql
		sys-libs/zlib"
RDEPEND="${DEPEND}"

src_unpack() {
	unpack ${A}
	cd "${S}"

	sed -i \
		-e 's/\(CPPFLAGS\) =/\1+=/' \
		-e 's/-Wall -g -O2/-fPIC/' \
		-e 's#/usr/devel#/usr#' \
		Makefile || die "sed failed"
}

src_compile() {
	emake CXX="$(tc-getCXX)" || die "emake failed"
}

src_install() {
	dolib libmysqlwrapped.a
	insinto /usr/include
	doins libmysqlwrapped.h

	dodoc Changelog README
}