add Added Files:
[hdw-repos/packages.git] / demian / enlightenment / enlightenment
1 # HDW Linux enlightenment
2 #
3 # [M] Jonathan J. Vargas demian@hackdaworld.dyndns.org
4 # [I] 
5 # [V] 0.16.5
6 # [S] 4 5
7 # [D] enlightenment-0.16.5.tar.gz http://easynews.dl.sourceforge.net/sourceforge/enlightenment/
8 # [D] fnlib-0.5.tar.gz http://easynews.dl.sourceforge.net/sourceforge/enlightenment/
9 # [D] imlib2-1.0.6.tar.gz http://telia.dl.sourceforge.net/sourceforge/enlightenment/
10 # [D] freetype-1.3.1.tar.gz http://unc.dl.sourceforge.net/sourceforge/freetype/
11
12 # Notes: still testing
13
14 custmain()
15 {
16
17     echo building freetype (older version - for compatibility)
18     tar -xvzf $hdw_home_dir/download/$dir/$package/freetype-1.3.1.tar.gz
19     cd freetype-1.3.1 ;
20     ./configure $confopt --prefix=/usr; make $make_conf ;
21     make $install_conf install ; cd ..
22
23     echo building fnlib
24     tar -xvzf $hdw_home_dir/download/$dir/$package/fnlib-0.5.tar.gz
25     cd fnlib-0.5 ; 
26     ./configure $confopt --prefix=/usr; make $make_conf ; 
27     make $install_conf install ; cd ..
28
29     echo "building imlib2 (new enlightenm. sources already bring it)"
30     tar -xvzf $hdw_home_dir/download/$dir/$package/imlib2-1.0.6.tar.gz
31     cd imlib2-1.0.6 ; 
32     ./configure $confopt --prefix=/usr; make $make_conf ;
33     make $install_conf install ; cd ..
34
35     echo "building enlightenment =)"
36     tar -xvzf $hdw_home_dir/download/$dir/$package/enlightenment-0.16.5.tar.gz
37     cd enlightenment-0.16.5 ;
38     ./configure $confopt ; make $make_conf ;
39     make $install_conf install ;
40
41     echo making some final changes
42     ln -sf $prefix/enlightenment/bin $prefix/enlightenment
43     ln -sf $prefix/enlightenment/enlightenment /usr/
44                 
45
46     echo -e "\ndone :)"
47 }