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 5709 by niro, Sat Aug 7 11:59:27 2010 UTC branches/magellan-next/include/xfce.sminc revision 9386 by niro, Mon Nov 28 19:56:48 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     parole|orage|ristretto|taskmanager|xfburn) URISUBDIR="apps" ;;
20     xfce4-dict|xfce4-mixer|xfce4-notifyd) URISUBDIR="apps" ;;
21     *) URISUBDIR="xfce" ;;
22    esac
23    
24  # default SRC_URIs  # default SRC_URIs
25  SRC_URI=(  SRC_URI=(
26   ${SRC_URI[*]}   ${SRC_URI[*]}
27   http://mocha.xfce.org/archive/src/xfce/${PNAME}/${PVER%.*}/${SRCFILE}   http://mocha.xfce.org/archive/src/${URISUBDIR}/${PNAME}/$(echo ${PVER} | cut -d. -f1-2)/${SRCFILE}
28     http://archive.xfce.org/src/${URISUBDIR}/${PNAME}/$(echo ${PVER} | cut -d. -f1-2)/${SRCFILE}
29   mirror://${PNAME}/${SRCFILE}   mirror://${PNAME}/${SRCFILE}
30  )  )
31    
32  # special functions needed by postinstall|postremove  # special functions needed by postinstall|postremove
33  SPECIAL_FUNCTIONS="${SPECIAL_FUNCTIONS} xfce_update_desktop_db xfce_update_mime_db xfce_update_icon_cache"  SPECIAL_FUNCTIONS="${SPECIAL_FUNCTIONS} xfce_update_desktop_db xfce_update_mime_db xfce_update_icon_cache xfce_postinstall xfce_postremove"
34    
35  xfce_configure()  xfce_configure()
36  {  {
37   local configure_opts="$@"   local configure_opts="$@"
38   mconfigure ${configure_opts} || die   mconfigure \
39     --libexecdir=/usr/$(mlibdir)/${PNAME} \
40     --with-html-dir=/usr/share/doc/${PNAME}-${PVER}/html \
41     --disable-debug \
42     --disable-static \
43     ${configure_opts} \
44     || die
45  }  }
46    
47  xfce_src_prepare()  xfce_src_prepare()
# Line 37  xfce_src_prepare() Line 52  xfce_src_prepare()
52  xfce_src_compile()  xfce_src_compile()
53  {  {
54   cd ${SRCDIR}   cd ${SRCDIR}
55   xfce_configure --disable-debug --disable-static || die  
56     xfce_configure || die
57   mmake ${XFCE_MAKE_OPTS} || die   mmake ${XFCE_MAKE_OPTS} || die
58  }  }
59    

Legend:
Removed from v.5709  
changed lines
  Added in v.9386