blob: d25e02d26311f73c4e83948a5eba9109937fb84d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
#! /bin/bash
SUDO_PASSWD=""
EFL_MINOR="1"
EFL_VER="1.7.7"
E_VER="0.17.3"
BASE_URL="http://download.enlightenment.fr/releases"
DBUS_SRV_PATH="/usr/share/dbus-1/services"
unset LANG
export CFLAGS="-O2 -march=native -ffast-math"
export CC="ccache gcc"
alias make='make -j4'
PREFIX="/opt/efl-release"
export PATH="$PREFIX/bin:$PATH"
export LD_LIBRARY_PATH="$PREFIX/lib"
export PKG_CONFIG_PATH="$PREFIX/lib/pkgconfig"
EFL_FLAGS="--disable-doc --disable-static"
E_FLAGS="--enable-pam --disable-device-hal --enable-device-udev --enable-mount-udisks --enable-mount-eeze --enable-elementary --enable-emotion --enable-enotify"
E_FLAGS+=" --sysconfdir=/etc"
EFL_PKGS="eina eet evas ecore eio embryo edje efreet e_dbus eeze emotion ethumb elementary"
function get_and_clean()
{
_arch=$1
echo " - $_arch"
[ -f $_arch ] || curl -L "$BASE_URL/$_arch" -o $_arch
[ $(file -ib $_arch | cut -f 1 -d ' ' | grep text) ] && rm $_arch
}
function e_get()
{
echo "fetch archives"
for pkg in $EFL_PKGS; do
arch_minor=${pkg}-${EFL_VER}.${EFL_MINOR}.tar.bz2
arch=${pkg}-${EFL_VER}.tar.bz2
[ -e $arch -a -e $arch_minor ] && rm ${pkg}-${EFL_VER}.*.bz2
[ -e $arch -o -e $arch_minor ] && continue
get_and_clean $arch_minor
[ -e $arch_minor ] && continue
get_and_clean $arch
[ -e $arch ] || exit 1
done
e_arch=enlightenment-${E_VER}.tar.bz2
[ -f $e_arch ] && return
echo " - $e_arch"
curl -L "$BASE_URL/$e_arch" -o $e_arch || exit 1
}
function e_extract()
{
echo "extract archives"
for pkg in $EFL_PKGS; do
rm -rf $pkg-${EFL_VER}.${MINOR}*[^bz2] 2>/dev/null
arch_minor=${pkg}-${EFL_VER}.${EFL_MINOR}.tar.bz2
arch=${pkg}-${EFL_VER}.tar.bz2
if [ -e $arch_minor ]; then
echo " - $arch_minor"
tar -xjf $arch_minor|| exit 1
elif [ -e $arch ]; then
echo " - $arch"
tar -xjf $arch || exit 1
else
echo "$pkg arch missing" && exit 1
fi
done
echo " - $e_arch"
rm -rf enlightenment-*[^bz2] 2>/dev/null
e_arch=enlightenment-${E_VER}.tar.bz2
tar -xjf $e_arch || exit 1
}
function e_build()
{
echo "build and install"
for pkg in $EFL_PKGS; do
echo " - $pkg"
cd $pkg-${EFL_VER}.${MINOR} 2>/dev/null || cd $pkg-${EFL_VER} 2>/dev/null
./autogen.sh --prefix=$PREFIX $EFL_FLAGS
if [ $? -ne 0 ]; then
echo " - FIX configure.ac" && sed -i 's/AM_PROG_CC_STDC/AC_PROG_CC/g' configure.ac && sed -i 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/g' configure.ac || exit 1
./autogen.sh --prefix=$PREFIX $EFL_FLAGS || exit 1
fi
make && echo "$SUDO_PASSWD" | sudo -S make install && cd .. || exit 1
done
echo " - $e_arch"
cd enlightenment-${E_VER} && ./configure --prefix=$PREFIX --libexecdir=$PREFIX/lib/enlightenment $E_FLAGS && make && echo "$SUDO_PASSWD" | sudo -S make install && cd .. || exit 1
cd $DBUS_SRV_PATH || exit 1
for $srv in $PREFIX/share/dbus-1/services/*; do
echo "$SUDO_PASSWD" | sudo -S ln -s $srv
done
}
function get_sudopwd()
{
sudo_test=/tmp/_sudo.test
echo -n "enter sudo-password: " && stty -echo && read SUDO_PASSWD && stty echo || exit 1
[ -e $sudo_test ] && sudo rm -f $sudo_test
echo "$SUDO_PASSWD" | sudo -S touch $sudo_test
if [ ! -e $sudo_test ]; then
echo "cmdline provided sudo password failed!"
exit 1
fi
}
get_sudopwd
e_get
e_extract
e_build
|