The wheelchart package, which I wrote, can be used.
Multiple lines in the data can be achieved by using \\ for a line break.
The percentages are automatically computed and can be used with \WCperc.

\documentclass[border=6pt]{standalone}
\usepackage{wheelchart}
\usetikzlibrary{decorations.markings}
\begin{document}
\begin{tikzpicture}
\wheelchart[
data=\WCvarC: \WCperc,
lines=0.4,
lines ext=0.5,
lines ext left anchor=east,
lines ext right anchor=west,
lines sep=-0.2,
lines style={
postaction=decorate,
decoration={
markings,
mark=at position 0 with {
\fill (0,0) circle[radius=0.1];
}
}
},
perc precision=1,
radius={1.8}{2.2},
]{%
26/cyan/Corporate\\and a\\long text,
28/orange/Plastique\\and another\\long text,
33.5/yellow/Chimique\\and a\\short text,
12.5/blue!50!red/Rhodia%
}
\end{tikzpicture}
\end{document}