Magellan Linux

Diff of /branches/R11-unstable/include/xfce.sminc

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/core/include/xfce.sminc revision 5716 by niro, Sat Aug 7 12:21:04 2010 UTC branches/magellan-next/include/xfce.sminc revision 9012 by niro, Thu Sep 29 19:12:39 2011 UTC
# Line 13  SDEPEND="${SDEPEND} Line 13  SDEPEND="${SDEPEND}
13    
14  sminclude mtools  sminclude mtools
15    
16    case ${PNAME} in
17     thunar-*-plugin) URISUBDIR="thunar-plugins" ;;
18     xfce4-*-plugin) URISUBDIR="panel-plugins" ;;
19     *) URISUBDIR="xfce" ;;
20    esac
21    
22  # default SRC_URIs  # default SRC_URIs
23  SRC_URI=(  SRC_URI=(
24   ${SRC_URI[*]}   ${SRC_URI[*]}
25   http://mocha.xfce.org/archive/src/xfce/${PNAME}/${PVER%.*}/${SRCFILE}   http://mocha.xfce.org/archive/src/${URISUBDIR}/${PNAME}/${PVER%.*}/${SRCFILE}
26     http://archive.xfce.org/src/${URISUBDIR}/${PNAME}/${PVER%.*}/${SRCFILE}
27   mirror://${PNAME}/${SRCFILE}   mirror://${PNAME}/${SRCFILE}
28  )  )
29    
# Line 26  SPECIAL_FUNCTIONS="${SPECIAL_FUNCTIONS} Line 33  SPECIAL_FUNCTIONS="${SPECIAL_FUNCTIONS}
33  xfce_configure()  xfce_configure()
34  {  {
35   local configure_opts="$@"   local configure_opts="$@"
36   mconfigure ${configure_opts} || die   mconfigure \
37     --libexecdir=/usr/$(mlibdir)/${PNAME} \
38     --with-html-dir=/usr/share/doc/${PNAME}-${PVER}/html \
39     --disable-debug \
40     --disable-static \
41     ${configure_opts} \
42     || die
43  }  }
44    
45  xfce_src_prepare()  xfce_src_prepare()
# Line 37  xfce_src_prepare() Line 50  xfce_src_prepare()
50  xfce_src_compile()  xfce_src_compile()
51  {  {
52   cd ${SRCDIR}   cd ${SRCDIR}
53   xfce_configure --disable-debug --disable-static || die  
54     xfce_configure || die
55   mmake ${XFCE_MAKE_OPTS} || die   mmake ${XFCE_MAKE_OPTS} || die
56  }  }
57    

Legend:
Removed from v.5716  
changed lines
  Added in v.9012