Magellan Linux

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

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

revision 1927 by niro, Wed Jun 10 16:20:46 2009 UTC revision 5475 by niro, Mon Jun 28 19:08:53 2010 UTC
# Line 6  sminclude mtools cmake qt4 Line 6  sminclude mtools cmake qt4
6  export KDEDIR=/opt/kde4  export KDEDIR=/opt/kde4
7  export KDECONFDIR=/etc/kde4  export KDECONFDIR=/etc/kde4
8  export QT_PLUGIN_PATH=${KDEDIR}/$(mlibdir)/kde4/plugins  export QT_PLUGIN_PATH=${KDEDIR}/$(mlibdir)/kde4/plugins
9    export DBUS_SYSTEM_DIR=/usr/share/dbus-1
10    
11  # fixes some compile issues ala "kde-config: command not found"  # fixes some compile issues ala "kde-config: command not found"
12  export PATH="${KDEDIR}/bin:${PATH}"  export PATH="${KDEDIR}/bin:${PATH}"
# Line 25  export KDEDIRS=${KDEDIR} Line 26  export KDEDIRS=${KDEDIR}
26    
27  DEPEND="${DEPEND}  DEPEND="${DEPEND}
28   >= x11-libs/libXt-1   >= x11-libs/libXt-1
29   >= x11-libs/libXinerama-1"   >= x11-libs/libXinerama-1
30     >= x11-libs/qt4-gui-4.5
31     >= x11-libs/qt4-qt3support-4.5
32     >= x11-libs/qt4-script-4.5
33     >= x11-libs/qt4-sql-4.5
34     >= x11-libs/qt4-svg-4.5
35     >= x11-libs/qt4-test-4.5
36     >= x11-libs/qt4-dbus-4.5
37     >= x11-libs/qt4-opengl-4.5
38     >= x11-libs/qt4-webkit-4.5"
39    
40  SDEPEND="${SDEPEND}  SDEPEND="${SDEPEND}
41   >= dev-util/cmake-2.4.7   >= dev-util/cmake-2.4.7
# Line 44  SRC_URI=( Line 54  SRC_URI=(
54  )  )
55    
56  # exported functions and variables for mage-file  # exported functions and variables for mage-file
57  SPECIAL_VARS="KDEDIR"  SPECIAL_VARS="${SPECIAL_VARS} KDEDIR"
58  SPECIAL_FUNCTIONS="kde4_buildsycoca kde4_postinstall kde4_postremove"  SPECIAL_FUNCTIONS="${SPECIAL_FUNCTIONS} kde4_buildsycoca kde4_postinstall kde4_postremove"
59    
60  kde4_configure()  kde4_configure()
61  {  {
# Line 53  kde4_configure() Line 63  kde4_configure()
63    
64  # disabled, seems to be broken atm  # disabled, seems to be broken atm
65  # # use --enable-final only on i*86  # # use --enable-final only on i*86
66  # [[ ${ARCH} = i*86 ]] && configure_opts="${configure_opts} -DKDE4_ENABLE_FINAL=ON"  # [[ ${ARCH} = i*86 ]] && configure_opts+=" -DKDE4_ENABLE_FINAL=ON"
67     configure_opts+=" -DCMAKE_BUILD_TYPE=Release"
68    
69     # use full rpath on non /usr installations
70     [[ ${KDEDIR} != /usr ]] && configure_opts+=" -DKDE4_USE_ALWAYS_FULL_RPATH=ON"
71    
72     # add akonadi dbus dir
73     if [[ ${PNAME/4/} = akonadi ]] || [[ ${PNAME/4/} = kdepim-runtime ]]
74     then
75     configure_opts+=" -DAKONADI_DBUS_INTERFACES_DIR=${DBUS_SYSTEM_DIR}/interfaces/"
76     configure_opts+=" -DAKONADI_DBUS_SERVICES_DIR=${DBUS_SYSTEM_DIR}/services/"
77     fi
78    
79   # add commandline given arguments   # add commandline given arguments
80   configure_opts="${configure_opts} $@"   configure_opts+=" $@"
81    
82   # remove build dir if exist   # remove build dir if exist
83   [[ -d ${BUILDDIR}/build ]] && rm -rf ${BUILDDIR}/build   [[ -d ${BUILDDIR}/build ]] && rm -rf ${BUILDDIR}/build
# Line 66  kde4_configure() Line 87  kde4_configure()
87   cd ${BUILDDIR}/build   cd ${BUILDDIR}/build
88    
89   cmake_configure \   cmake_configure \
90   -DCMAKE_INSTALL_PREFIX=${PREFIX:-${KDEDIR}} \   -DCMAKE_INSTALL_PREFIX=${KDEDIR} \
91   -DLIB_INSTALL_DIR=${PREFIX:-${KDEDIR}/$(mlibdir)} \   -DSYSCONF_INSTALL_DIR=${KDECONFDIR} \
92   -DKDE4_USE_ALWAYS_FULL_RPATH=ON \   -DLIB_INSTALL_DIR=${KDEDIR}/$(mlibdir) \
93     -DDBUS_INTERFACES_INSTALL_DIR=${DBUS_SYSTEM_DIR}/interfaces/ \
94     -DDBUS_SERVICES_INSTALL_DIR=${DBUS_SYSTEM_DIR}/services/ \
95     -DKDE4_DBUS_INTERFACES_DIR=${DBUS_SYSTEM_DIR}/interfaces/ \
96     -DKDE4_DBUS_SERVICES_DIR=${DBUS_SYSTEM_DIR}/services/ \
97   -DKDE4_ENABLE_FPIE=ON \   -DKDE4_ENABLE_FPIE=ON \
98   -DKDE4_BUILD_TESTS=OFF \   -DKDE4_BUILD_TESTS=OFF \
99   -DKDE4_ENABLE_HTMLHANDBOOK=ON \   -DKDE4_ENABLE_HTMLHANDBOOK=ON \
# Line 94  kde4_src_install() Line 119  kde4_src_install()
119   cd ${BUILDDIR}/build   cd ${BUILDDIR}/build
120   mmake DESTDIR=${BINDIR} ${KDE4_MAKE_OPTS} install || die   mmake DESTDIR=${BINDIR} ${KDE4_MAKE_OPTS} install || die
121    
122     # move dbus service dirs to a proper location if KDEDIR != /usr
123     if [[ ${KDEDIR} != /usr ]]
124     then
125     if [[ -d ${BINDIR}/${KDEDIR}/share/dbus-1 ]]
126     then
127     echo -e "${COLYELLOW}Warning: using dbus hotfix, dbus locations should be fixed!${COLDEFAULT}"
128     minstalldir /usr/share || die
129     cp -R ${BINDIR}/${KDEDIR}/share/dbus-1 ${BINDIR}/usr/share/ || die
130     rm -r ${BINDIR}/${KDEDIR}/share/dbus-1 || die
131     fi
132     fi
133    
134   cd ${SRCDIR}   cd ${SRCDIR}
135   local i   local i
136   for i in ABOUT-NLS AUTHORS BUGS CHANGES ChangeLog COPYING \   for i in ABOUT-NLS AUTHORS BUGS CHANGES ChangeLog COPYING \

Legend:
Removed from v.1927  
changed lines
  Added in v.5475