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

Collapse All | Expand All

(-)/home/gentoo-cvs/gentoo-x86/eclass/gnome2.eclass (-2 / +27 lines)
Lines 39-44 Link Here
39
	unpack ${A}
39
	unpack ${A}
40
	cd "${S}"
40
	cd "${S}"
41
41
42
	case "${EAPI}" in
43
		2)
44
			;;
45
		*)
46
			gnome2_src_prepare
47
			;;
48
	esac
49
}
50
51
gnome2_src_prepare() {
52
42
	# Prevent scrollkeeper access violations
53
	# Prevent scrollkeeper access violations
43
	gnome2_omf_fix
54
	gnome2_omf_fix
44
55
Lines 67-73 Link Here
67
}
78
}
68
79
69
gnome2_src_compile() {
80
gnome2_src_compile() {
70
	gnome2_src_configure "$@"
81
	case "${EAPI}" in
82
		2)
83
			;;
84
		*)
85
			gnome2_src_configure "$@"
86
			;;
87
	esac
88
71
	emake || die "compile failure"
89
	emake || die "compile failure"
72
}
90
}
73
91
Lines 137-140 Link Here
137
}
155
}
138
156
139
# pkg_prerm
157
# pkg_prerm
140
EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm
158
case "${EAPI}" in
159
	2)
160
		EXPORT_FUNCTIONS src_unpack src_prepare src_configure src_compile src_install pkg_preinst pkg_postinst pkg_postrm
161
		;;
162
	*)
163
		EXPORT_FUNCTIONS src_unpack src_compile src_install pkg_preinst pkg_postinst pkg_postrm
164
		;;
165
esac

Return to bug 239123