On 02/04/2014 01:22 PM, Darrell Anderson wrote:
Please confirm. Something in tdeutils 'make install' paths are broken and it is installing /hicolor/16x16/apps/irkick.png at that absolute path as well as the /locolor/16x16/apps/irkick.png. The same is true for the 22x22 and 32x32 icons for the same:
/hicolor/16x16/apps/irkick.png /hicolor/22x22/apps/irkick.png /hicolor/32x32/apps/irkick.png /locolor/16x16/apps/irkick.png /locolor/32x32/apps/irkick.png
I'm building tdeutils without any strange patches:
cd ${srcdir}/${pkgname#*-}
# copy system libtool and ltmain scripts cp /usr/share/aclocal/libtool.m4 ./admin/libtool.m4.in cp /usr/share/libtool/config/ltmain.sh ./admin
## Generate config files and update with autoreconf cd ${srcdir}/${pkgname#*-} make -f admin/Makefile.common
## configure ./configure \ --prefix=${TDEDIR} \ --with-qt-dir=${QTDIR} \ --sysconfdir=${TDEDIR}/etc \ --localstatedir=/var \ --enable-debug=full \ --enable-closure
## make $NUMJOBS make $NUMJOBS
cd ${srcdir}/${pkgname#*-} make -j1 DESTDIR="$pkgdir" install
What got broke and where?
Something in the tdeutils (whereever the irkick.png icons are installed from) is not seeing your prefix configuration.
BTW, I am using cmake for tdeutils.
rm CMakeCache.txt 2>/dev/null mkdir -p ${TMP}/${PRGNAM}.build
cd ${TMP}/${PRGNAM}.build cmake $SOURCES_ROOT \ -DCMAKE_C_FLAGS:STRING="$CPUOPT" \ -DCMAKE_CXX_FLAGS:STRING="$CPUOPT $DEBUG_CMAKE_OPT" \ -DCMAKE_INSTALL_PREFIX=${PREFIX} \ -DSYSCONF_INSTALL_DIR=${SYSCONFDIR} \ -DLIB_SUFFIX=${LIBDIRSUFFIX} \ -DMAN_INSTALL_DIR=${MANDIR} \ -DWITH_DPMS=ON \ -DWITH_XSCREENSAVER=ON \ -DWITH_SNMP=ON \ -DWITH_SENSORS=ON \ -DWITH_XMMS=ON \ -DWITH_KNEWSTUFF=ON \ -DWITH_ASUS=ON \ -DWITH_VAIO=ON \ -DWITH_THINKPAD=ON \ -DWITH_I8K=ON \ -DWITH_POWERBOOK=OFF \ -DWITH_POWERBOOK2=OFF \ -DBUILD_ALL=ON || exit 1
Darrell
Will rebuild with cmake (I have the cmake build in the PKGBUILD for tdeutils for some reason, but it is commented out...) Will swap and report back.