blob: 7b59913ab58add82c0fe0e5462c25d9337276ae2 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit versionator
MY_PVM=$(get_version_component_range 1-2)
DESCRIPTION="Utility functions, classes and widgets written on top of gtkmm and glibmm."
HOMEPAGE="http://code.google.com/p/gtkmm-utils/"
SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="dev-cpp/gtkmm:2.4"
DEPEND="
virtual/pkgconfig
doc? ( app-doc/doxygen )
${RDEPEND}"
src_configure() {
econf $(use_enable doc documentation)
}
|