Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 463412 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/media-libs/libXcm/libXcm-0.5.2.ebuild (-10 / +18 lines)
Lines 1-8 Link Here
1
# Copyright 1999-2013 Gentoo Foundation
1
# Copyright 1999-2013 Gentoo Foundation
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/media-libs/libXcm/libXcm-0.5.2.ebuild,v 1.2 2013/02/04 07:36:15 xmw Exp $
3
# $Header: $
4
4
5
EAPI=4
5
EAPI=5
6
7
inherit autotools-multilib
6
8
7
DESCRIPTION="reference implementation of the net-color spec"
9
DESCRIPTION="reference implementation of the net-color spec"
8
HOMEPAGE="http://www.oyranos.org/libxcm/"
10
HOMEPAGE="http://www.oyranos.org/libxcm/"
Lines 13-38 Link Here
13
KEYWORDS="~amd64 ~x86"
15
KEYWORDS="~amd64 ~x86"
14
IUSE="X doc static-libs"
16
IUSE="X doc static-libs"
15
17
16
RDEPEND="X? ( x11-libs/libXmu
18
RDEPEND="X? ( x11-libs/libXmu[abi_x86_32?]
17
		x11-libs/libXfixes
19
		x11-libs/libXfixes[abi_x86_32?]
18
		x11-libs/libX11
20
		x11-libs/libX11[abi_x86_32?]
19
		x11-proto/xproto )"
21
		x11-proto/xproto[abi_x86_32?] )"
20
DEPEND="${RDEPEND}
22
DEPEND="${RDEPEND}
21
	app-doc/doxygen"
23
	app-doc/doxygen"
22
24
25
DOCS=( AUTHORS ChangeLog README )
26
23
src_configure() {
27
src_configure() {
24
	econf --disable-silent-rules \
28
	local myeconfargs=(--disable-silent-rules
25
		$(use_with X x11) \
29
		$(use_with X x11)
26
		$(use_enable static-libs static)
30
		$(use_enable static-libs static)
31
		)
32
33
	autotools-multilib_src_configure
27
}
34
}
28
35
29
src_compile() {
36
src_compile() {
30
	default
37
	autotools-multilib_src_compile
38
31
	use doc && doxygen
39
	use doc && doxygen
32
}
40
}
33
41
34
src_install() {
42
src_install() {
35
	default
43
	autotools-multilib_src_install
36
44
37
	use doc && dohtml doc/html/*
45
	use doc && dohtml doc/html/*
38
}
46
}

Return to bug 463412