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

Collapse All | Expand All

(-)xine-lib-1.0.1-r4.ebuild.orig (-2 / +10 lines)
Lines 217-227 Link Here
217
		# This will be added when polypaudio will be added to portage.
217
		# This will be added when polypaudio will be added to portage.
218
		# $(use_enable polypaudio)
218
		# $(use_enable polypaudio)
219
219
220
	emake -j1 || die "Parallel make failed"
220
	if use debug
221
		emake -j1 debug || die "Parallel make failed"
222
	else
223
		emake -j1 || die "Parallel make failed"
224
	fi
221
}
225
}
222
226
223
src_install() {
227
src_install() {
224
	make DESTDIR="${D}" install || die "Install failed"
228
	if use debug
229
		make DESTDIR="${D}" install-debug || die "Install failed"
230
	else
231
		make DESTDIR="${D}" install || die "Install failed"
232
	fi
225
233
226
	# Xine's makefiles install some file incorrectly. (Gentoo bug #8583, #16112).
234
	# Xine's makefiles install some file incorrectly. (Gentoo bug #8583, #16112).
227
	dodir /usr/share/xine/libxine1/fonts
235
	dodir /usr/share/xine/libxine1/fonts

Return to bug 112980