trinity-devel@lists.pearsoncomputing.net

Message: previous - next
Month: February 2014

Re: [trinity-devel] Crystal Window Theme

From: "David C. Rankin" <drankinatty@...>
Date: Sun, 02 Feb 2014 15:32:21 -0600
On 02/02/2014 02:17 PM, Patrick "Kai" Baker wrote:
> I was searching themes for my TDE install and found Crystal:
> 
> http://kde-look.org/content/show.php/Crystal?content=13969
> 
> It's source so I tried to set it up but the configure script doesn't generate a
> Makefile. I get this error at the end:
> 
> checking for KDE... configure: error:
> in the prefix, you've chosen, are no KDE headers installed. This will fail.
> So, check this please and use another prefix!
> 
> 
> I'm not sure what is being referred to by "KDE prefixes" nor how to fix it. I've
> been using TDE for a while and I'd like to contribute but I'm new to software
> engineering and I have no idea where to start when dealing with a project as big
> as TDE. But I would like to contribute by fixing this problem but I'm not sure
> how to go about it. Any help which can lead me in the right direction will be
> appreciated.
> 
> Kai


Build it as follows:

  ## Source the QT and KDE profile
  [ "$QTDIR" = "" ] && . /etc/profile.d/tqt3.sh
  [ "$TDEDIR" = "" ] && . /etc/profile.d/trinity.sh

  cd ${srcdir}/${pkgname//tde-}

  ## "Copying system libtool files...."
  cp /usr/share/aclocal/libtool.m4 ./admin/libtool.m4.in
  cp /usr/share/libtool/config/ltmain.sh ./admin

  ## "Running make -f admin/Makefile.common ...."
  make -f admin/Makefile.common

  ## configure
  ./configure --prefix=${TDEDIR} \
    --prefix=${TDEDIR} \
    --with-qt-dir=${QTDIR} \
    --with-qt-includes=${QTDIR}/include \
    --with-qt-libraries=${QTDIR}/lib \
    --with-extra-includes="/usr/include/tqt:/usr/include/tqt/Qt" \
    --with-extra-libs="${TDEDIR}/lib:${TDEDIR}/lib/trinity" \
    --sysconfdir=${TDEDIR}/etc \
    --localstatedir=/var

  ## make
  make

  ## install
  make -j1 install

-- 
David C. Rankin, J.D.,P.E.