Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 525830
Collapse All | Expand All

(-)a/eclass/qmake-utils.eclass (+20 lines)
Lines 246-249 eqmake5() { Link Here
246
	fi
246
	fi
247
}
247
}
248
248
249
# @FUNCTION: qt4_get_qmake
250
# @DESCRIPTION:
251
# Get the location of Qt4's qmake.
252
qt4_get_qmake() {
253
	local qmake_path=${EPREFIX}/usr/$(get_libdir)/qt4/bin/qmake
254
255
	if [[ -x ${qmake_path} ]]; then
256
		echo ${qmake_path}
257
	else
258
		echo ${EPREFIX}/usr/bin/qmake
259
	fi
260
}
261
262
# @FUNCTION: qt5_get_qmake
263
# @DESCRIPTION:
264
# Get the location of Qt5's qmake.
265
qt5_get_qmake() {
266
	echo ${EPREFIX}/usr/$(get_libdir)/qt5/bin/qmake
267
}
268
249
fi
269
fi

Return to bug 525830