Show
Ignore:
Timestamp:
03/21/09 14:39:23 (3 years ago)
Author:
max_posedon
Message:

applying alonbl's indent an myconf patches, thanks alonbl! great work

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • openmoko/trunk/openmoko-target/x11-libs/etk/etk-20090313.ebuild

    r196 r260  
    22# Distributed under the terms of the GNU General Public License v2 
    33# $Header: $ 
     4 
     5EAPI=2 
    46 
    57inherit enlightenment 
     
    3032        cd "${S}" 
    3133 
    32         # autoreconf fails without autopoinf -f 
    33         autopoint -f > /dev/null || die "autopoint failed" 
    34  
    35         eautoreconf || die "eautoreconf failed" 
     34        autopoint -f || die 
     35        eautoreconf 
    3636} 
    3737 
    3838src_compile() { 
    39     local myconf 
    40  
    41     myconf="${myconf} 
     39        econf \ 
    4240            --x-includes=${SYSROOT}/usr/X11R6/include \ 
    43             --x-libraries=${SYSROOT}/usr/X11R6/lib" 
    44  
    45  
    46         econf ${myconf} || die "Configuration failed" 
    47         emake || die "Make failed" 
     41            --x-libraries=${SYSROOT}/usr/X11R6/lib \ 
     42                || die 
     43        emake || die 
    4844}