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

Collapse All | Expand All

(-)kernel-2.eclass.orig (-1 / +9 lines)
Lines 339-349 if [[ ${ETYPE} == sources ]]; then Link Here
339
			DEBLOB_PV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}"
339
			DEBLOB_PV="${KV_MAJOR}.${KV_MINOR}.${KV_PATCH}"
340
			DEBLOB_A="deblob-${DEBLOB_PV}"
340
			DEBLOB_A="deblob-${DEBLOB_PV}"
341
			DEBLOB_HOMEPAGE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
341
			DEBLOB_HOMEPAGE="http://www.fsfla.org/svnwiki/selibre/linux-libre/"
342
			DEBLOB_C="deblob-check"
343
			DEBLOB_CURI="${DEBLOB_HOMEPAGE}/download/releases/LATEST-${DEBLOB_PV}.N/${DEBLOB_C}"
344
			if [[ $EAPI == "2" ]] ; then
345
				DEBLOB_C="${DEBLOB_C}-${DEBLOB_PV}"
346
				DEBLOB_CURI="${DEBLOB_CURI} -> ${DEBLOB_C}"
347
			fi
342
			HOMEPAGE="${HOMEPAGE} ${DEBLOB_HOMEPAGE}"
348
			HOMEPAGE="${HOMEPAGE} ${DEBLOB_HOMEPAGE}"
343
				
349
				
344
			KERNEL_URI="${KERNEL_URI}
350
			KERNEL_URI="${KERNEL_URI}
345
				deblob? (
351
				deblob? (
346
					${DEBLOB_HOMEPAGE}/download/releases/LATEST-${DEBLOB_PV}.N/${DEBLOB_A}
352
					${DEBLOB_HOMEPAGE}/download/releases/LATEST-${DEBLOB_PV}.N/${DEBLOB_A}
353
					${DEBLOB_CURI}
347
				)"
354
				)"
348
		else
355
		else
349
			# We have no way to deblob older kernels, so just mark them as
356
			# We have no way to deblob older kernels, so just mark them as
Lines 1133-1139 kernel-2_src_unpack() { Link Here
1133
1140
1134
	if [[ $K_DEBLOB_AVAILABLE == 1 ]] && use deblob ; then
1141
	if [[ $K_DEBLOB_AVAILABLE == 1 ]] && use deblob ; then
1135
		cp "${DISTDIR}/${DEBLOB_A}" "${T}"
1142
		cp "${DISTDIR}/${DEBLOB_A}" "${T}"
1136
		chmod +x "${T}/${DEBLOB_A}"
1143
		cp "${DISTDIR}/${DEBLOB_C}" "${T}/deblob-check"
1144
		chmod +x "${T}/${DEBLOB_A}" "${T}/deblob-check"
1137
	fi
1145
	fi
1138
}
1146
}
1139
1147

Return to bug 324505