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

EAPI=4

inherit autotools-utils versionator

DESCRIPTION="Library of C++ utilities -- meta-programming tests, smart pointers, containers"
HOMEPAGE="http://codesynthesis.com/projects/libcutl/"
SRC_URI="http://codesynthesis.com/download/${PN}/$(get_version_component_range 1-2)/${P}.tar.bz2"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="static-libs"

RDEPEND="dev-libs/boost"
DEPEND="${RDEPEND}"

src_configure() {
	local myeconfargs=(
		--with-external-boost
		--docdir=/tmp/dropme
	)

	autotools-utils_src_configure
}

src_install() {
	autotools-utils_src_install

	rm -r "${D}"/tmp/dropme || die
}