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

#
# gnome2-eapi-fixes.eclass
#
# EAPI-specific fixes for gnome2.eclass
#
# Maintained by Nirbheek Chauhan <nirbheek.chauhan@gmail.com>
#

case "${EAPI}" in
	"2")
		# src_configure gets called twice (#239123)
		gnome2_src_compile() {
			default_src_compile
		}

		gnome2-eapi-fixes_src_compile() {
			gnome2_src_compile
		}

		EXPORT_FUNCTIONS src_compile
		;;
	*) :;;
esac