blob: 28413552c1c7fe7a74f8bc0d0fde7e5dfb0617e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
SRC_URI = "http://ftp.gnome.org/pub/gnome/sources/gtk-engines/2.6/gtk-engines-${PV}.tar.bz2"
S = "${WORKDIR}/gtk-engines-${PV}"
inherit autotools
do_configure_prepend() {
for i in `ls gtk-common`; do
ln -sf ../gtk-common/$i gtk2-engine/$i
done
}
|