Ticket #152: enlightenment.eclass.diff

File enlightenment.eclass.diff, 0.8 KB (added by alonbl, 3 years ago)

enlightenment.eclass.diff

  • enlightenment.eclass

     
    1111 
    1212case ${PV} in 
    1313        20090212) 
    14                 rev=39002 
     14                ESVN_REVISION=39002 
    1515                ;; 
    1616        20090313) 
    17                 rev=39300 
     17                ESVN_REVISION=39300 
    1818                ;; 
     19        99999999) 
     20                ;; 
    1921        *) 
    2022                die "Unknown revision!" 
    2123                ;; 
    2224esac 
    2325 
    24 ESVN_REVISION="r$rev" 
    25  
    2626enlightenment_src_unpack() { 
    27         subversion_src_unpack 
     27        subversion_src_unpack 
    2828 
    29         cd "${S}" 
     29        cd "${S}" 
    3030 
    3131        # Applying all user specified patches 
    3232        for patch in ${E17_PATCHES}; do 
     
    4242        emake || die "emake failed" 
    4343} 
    4444 
    45 enlightenment_src_install () { 
     45enlightenment_src_install() { 
    4646        emake DESTDIR="${D}" install || die "emake install failed" 
    4747        dodoc AUTHORS NEWS README 
    4848}