You are not logged in.
Offline
Yay, the desktop is back and working for me with the 20081022 update!
Akregator still won't start for me though.
Offline
Yes, now is working!
And the task manager has got a multirow option
Offline
yay, but applets seems not to hold the position :-|
Offline
Offline
Anyone knows where can i find info for qwm on the web ?
If it ain't broke, broke it then fix it.
Offline
why is poppler and poppler-qt both there ..i got conflicts but i did pacman -Syuf kde-svn-all
now iam logged into kde...how can i clean up any conflicts...also shaman does not run i installed it with pacman -Sy shaman using a user with sudo access but it says chown root shaman && chmod u+s shaman
but the command says no such file or directory
Acer Aspire V5-573P Antergos KDE
Offline
@Maki: it's actually based on qlwm from http://www.alinden.mynetcologne.de/qlwm/.
@venky80: all I did with poppler is copy extra/poppler 0.8.6-1 and update the version to 0.10.0, and yes, I was surprised to to see poppler-qt depend on poppler. Perhaps it's meant to be a makedepends=() rather than a depends=() so poppler-qt will build but probably not needed for runtime (I'm guessing though). As for shaman, I'd try and install community/shaman now that it's an official package and I'll remove my dev/shaman build. The official one probably has the right user perms and if not it's "/usr/bin/shaman" you are after, not just "shaman".
I've run into the taglib dependency issue on i686 and unfortunately kdesupport won't build at the moment so any fixes I'd like to try won't work because we're stuck with the old kdesupport in the repo. For some reason kdesupport builds on x86_64 and I don't see a problem with the taglib dependency so I presume the kdesupport PKGBUILD tweaks I made will work around the taglib problem... but not for i686 until kdesupport builds again. From the README in kdesupport...
What it used to be -- It used to be a copy of important libraries that were required for building KDE, but weren't part of KDE (eg libxml). Each library in kdesupport had a master copy that lived somewhere else - having those libraries in kdesupport was just a convenience for KDE developers. This is no longer done.
... but I can't find any decent info about how to actually use it now, like, how to disable taglib and use the local version and there is a phonon component that is why it's not building on i686. There is a phonon in qt-copy (disabled), one in kdebase/runtime/phonon and now this kdesupport/phonon component. All a bit confusing.
Offline
Hi Mark , when I was compiling kde4 earlier I use to disable phonon build in kdesupport commenting the relative stuff in CMakeLists.txt in the source directory like that.
add_subdirectory(automoc)
macro_optional_add_subdirectory(akonadi)
macro_optional_add_subdirectory(eigen)
macro_optional_add_subdirectory(eigen2)
macro_optional_add_subdirectory(taglib)
macro_optional_add_subdirectory(soprano)
macro_optional_add_subdirectory(strigi)
macro_optional_add_subdirectory(qimageblitz)
#macro_optional_add_subdirectory(phonon)
macro_optional_add_subdirectory(cpptoxml)
I think it's better stick with kdebase phonon version, assuming that the phonon qt copt is disabled also.
You can try disabling the taglib build also in the same way, so we all can use the extra package avoiding deps problems with other packages.
If your build system download the source from scratch everytime maybe you have to add some grep/sed magic to the PKGBUILD to disable that unneeded stuff. What do you think?
cheers and great work as always! :-)
P.S. can you update kdebindings package also? I would like to mess with the new pykde stuff and python plasmoids ;-)
Last edited by mangus (2008-10-26 12:37:04)
Offline
@mangus: thanks for the hints. I added a patch to kdesupport to disable phonon as you suggested, http://code.google.com/p/eth-os/updates/list, and yes, the qt-copy phonon is disabled as it's being configured. kdesupport still won't build, something to do with akonadi now. Let's see what another 24 hours of svn updates provide.
What do you suggest for kdebindings ?
http://eth-os.googlecode.com/svn/trunk/ … s/PKGBUILD
If it hasn't been updated then it generally means it's failing to build. I'll look at it tomorrow.
Offline
Anyone have this problem ?
looking for inter-conflicts...
error: failed to prepare transaction (could not satisfy dependencies)
:: soundkonverter: requires taglib
:: tunepimp: requires taglib
:: vlc: requires taglib
[root@chuck ~]# pacman -S taglib
resolving dependencies...
looking for inter-conflicts...
:: taglib conflicts with kdesupport. Remove kdesupport? [Y/n]
If it ain't broke, broke it then fix it.
Offline
I've got the same error as Maki.
After a quick check here's what I've found:
kdesupport 4.2.0-2008102315 provides= qimageblitz, strigi, soprano, taglib
kdesupport 4.2.0-2008102514 provides= [nothing]
Which of course produced a mayor problem with unsolvable dependancies.
Please correct these, I'd hate to go back to compiling again
Edit: And here's the error in PKGBUILD:
provides=(qimageblitz strigi soprano 'taglib=1.5')
conflicts=(qimageblitz strigi soprano taglib)
replaces=(qimageblitz strigi soprano taglib)
should be:
provides=('qimageblitz' 'strigi' 'soprano' 'taglib=1.5')
conflicts=('qimageblitz' 'strigi' 'soprano' 'taglib')
replaces=('qimageblitz' 'strigi' 'soprano' 'taglib')
Last edited by Githzerai (2008-10-26 15:06:07)
Offline
Another thing:
Since you're already building playground stuff it would be nice to consider adding kdereview also
It's a simple PKGBUILD:
pkgname=kdereview
pkgver=4.2.0
pkgrel=$(date -u +%Y%m%d%H)
pkgdesc="playground apps that should soon be moved to KDE"
url="http://www.kde.org/"
arch=(i686 x86_64)
license=(GPL)
depends=(kdebase)
makedepends=(cmake)
groups=(kde-svn-all)
source=($pkgname-$pkgver.tar.bz2)
build() {
mkdir -p $srcdir/build && cd $srcdir/build || return 1
cmake ../$pkgname-$pkgver -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=RELEASE
make DESTDIR=$startdir/pkg install || return 1
}
(NOTE: I made this PKGBUILD to reflect the way you compile other packages, with tar.bz2 package as source instead of svn download, I hope that's OK )
which compiles about 5 minutes on a decent machine (with a 99.9% chance of build success), I just think it would be a nice addition to your work.
Offline
why does kdegraphics need poppler-qt it conflicts with poppler
@venky80: all I did with poppler is copy extra/poppler 0.8.6-1 and update the version to 0.10.0, and yes, I was surprised to to see poppler-qt depend on poppler. Perhaps it's meant to be a makedepends=() rather than a depends=() so poppler-qt will build but probably not needed for runtime (I'm guessing though). As for shaman, I'd try and install community/shaman now that it's an official package and I'll remove my dev/shaman build. The official one probably has the right user perms and if not it's "/usr/bin/shaman" you are after, not just "shaman".
Also I am getting no text in the screen all of the menu bar titles and task manager titles are blank.
Last edited by venky80 (2008-10-26 16:54:28)
Acer Aspire V5-573P Antergos KDE
Offline
To get a taste of kde4.2 before it comes out, I planned to check out these KDE SVN builds on a 5gig virtualbox virtual drive with 768MB RAM and 128MB video for this image. I installed the base archlinux and then installed xfce4 which seems to work fine. On installing the kde svn though, i get to the kdm login screen and after logging in, I see the wallpaper/folderview etc, but it seems to freeze there, with no mouse or keyboard response. I initially thought this had something to do with the mouse pointer integration of virtualbox and so went back into xfce and installed guest additions. But even now, the kdm login hangs right after the login screen and I have to close the virtualbox window for the virtual image to power off.
I am running virtualbox from Linux Mint 5 as host, if that makes any difference.
Any help is appreciated. Thanks in advance
Offline
Re: taglib, yes I've tweaked the provides=() line but kdesupport now won't build for the last 2 or 3 days so this change isn't coming through to alleviate the taglib conflict problem. I obviously have dbus-core and extra/dbus on board so this error below is a mystery, and only on my i686 build partition, kdesupport for x86_64 is building okay.
cd /home/sources/eth-os/kde-svn/kdesupport/src/build/akonadi/server && /usr/bin/qdbusxml2cpp -m -a tracernotificationadaptor -i dbustracer.h -l Akonadi::DBusTracer /home/sources/eth-os/kde-svn/kdesupport/src/kdesupport-4.2.0/akonadi/server/interfaces/org.freedesktop.Akonadi.TracerNotification.xml
Cannot find libdbus-1 in your system to resolve symbol 'dbus_signature_validate_single'.
/bin/sh: line 1: 20932 Aborted /usr/bin/qdbusxml2cpp -m -a tracernotificationadaptor -i dbustracer.h -l Akonadi::DBusTracer /home/sources/eth-os/kde-svn/kdesupport/src/kdesupport-4.2.0/akonadi/server/interfaces/org.freedesktop.Akonadi.TracerNotification.xml
make[2]: *** [akonadi/server/tracernotificationadaptor.cpp] Error 134
make[2]: Leaving directory `/home/sources/eth-os/kde-svn/kdesupport/src/build'
@Githzerai: thanks for the kdereview PKGBUILD, I'll give it a whirl.
@venky80: so are you suggesting kdegraphics only needs to depend on poppler and not poppler-qt? For many months it built with extra/poppler-qt but someone asked about the latter poppler 0.10.0, which I had to build, and as I say, I only copied the standard poppler-qt PKGBUILD... so it should be much the same as it was before (I didn't change anything other than the version from 0.8.6 to 0.10.0).
Offline
@venky80: so are you suggesting kdegraphics only needs to depend on poppler and not poppler-qt? For many months it built with extra/poppler-qt but someone asked about the latter poppler 0.10.0, which I had to build, and as I say, I only copied the standard poppler-qt PKGBUILD... so it should be much the same as it was before (I didn't change anything other than the version from 0.8.6 to 0.10.0).
Well I did pacman -Rscn poppler-qt and it just took kdegraphics with it..so right now i dont have kdegraphics or poppler-qt
yes if u do a new install you will see poppler-qt conflicting with poppler
Last edited by venky80 (2008-10-27 01:54:14)
Acer Aspire V5-573P Antergos KDE
Offline
Re: kdesupport, in desperation I simply reinstalled my i686 dbus-core, dbus and dbus-glib packages and it now builds okay. Doh, I don't otherwise use this i686 partition so I have no idea how it got messed up.
kdereview got built and uploaded.
Woops, I went to rebuild just kdegraphics and it failed saying there is now no phonon lib (disabled from kdesupport to get it to build, but as it turned it was a corrupt dbus problem) so I just rebuilt kdesupport again with phonon and it should be in the repo by now. I suspect there will be a double up of phonon libs, if so, then just force the install. Hopefully the taglib problem will be solved. All I did with kdegraphics was comment out the poppler-qt dependency so, hopefully, either the standard 0.8.6 poppler-qt or my dev/poppler-qt will work.
Offline
Well I installed the older poppler-qt from extras and then installed kdegraphics and i did not see any conflict..so there is an issue with the new poppler-qt
Acer Aspire V5-573P Antergos KDE
Offline
@markc
Glad everything turned OK with kdesupport (or better: with your system ) and thank you for adding kdereview.
I guess they are re-organising the trunk for hard feature freeze that will happen soon, so they moved most of phonon in kdesupport (where it should be in the first place), so you did the good thing by removing the patch (I had no problems with such build).
Last edited by Githzerai (2008-10-27 13:40:51)
Offline
@venky80: is poppler/poppler-qt still a problem ? (I don't have a live i686 machine at the moment)
@adi_kausik: any luck with a recent update ? Perhaps my dbus problem affected your virtualbox installation.
@Githzerai: well thank you for the heads up and pkgbuild for kdereview. As it turned out, my problem was nothing to do with phonon, the dbus related error was about where phonon was being built so disabling it was just a part of the process of discovering that my local dbus install was mysteriously borked.
Offline
Yes till yesterday night it was, the old version of poppler-qt had no issues
@venky80: is poppler/poppler-qt still a problem ? (I don't have a live i686 machine at the moment)
@adi_kausik: any luck with a recent update ? Perhaps my dbus problem affected your virtualbox installation.
@Githzerai: well thank you for the heads up and pkgbuild for kdereview. As it turned out, my problem was nothing to do with phonon, the dbus related error was about where phonon was being built so disabling it was just a part of the process of discovering that my local dbus install was mysteriously borked.
Acer Aspire V5-573P Antergos KDE
Offline
Updated. Still facing the same issue.
I login at the KDE login screen. The splash-screen executes fully. The wallpaper loads. The panel loads. I am able to move and right click the mouse as this is happening. A few seconds later, everything freezes.
EDIT: On the other hand, mouse and keyboard seem to work fine in xfce
EDIT: I tried running KDE4 programs from xfce. Initially dragonplayer and okular seemed to work fine. Then I tried amarok and it froze up the virtual system. I thought it might be a lack of memory and increased the RAM allocation for that virtual install to 1gig. Still juk or amarok freeze the system. I am not sure if this info is useful.
Last edited by adi_kausik (2008-10-27 21:47:50)
Offline
Two more errors:
1. This one is simple: gui/krusader depends on kdelibs-dev, but you don't provide kdelibs-dev. Simple dependancy change solves it....
2. And this one is huge:
/usr/share/apps/cmake/modules/FindEigen.cmake exists in both 'kdelibs' and 'playground-libs'
/usr/share/apps/cmake/modules/FindEigen2.cmake exists in both 'kdelibs' and 'playground-libs'
/usr/share/apps/formulashape/fonts/Arev.ttf exists in both 'kdelibs' and 'koffice'
/usr/share/apps/formulashape/fonts/ArevBI.ttf exists in both 'kdelibs' and 'koffice'
/usr/share/apps/formulashape/fonts/ArevBd.ttf exists in both 'kdelibs' and 'koffice'
/usr/share/apps/formulashape/fonts/ArevIt.ttf exists in both 'kdelibs' and 'koffice'
/usr/share/apps/formulashape/fonts/cmex10.ttf exists in both 'kdelibs' and 'koffice'
/usr/share/apps/koffice/icons/hicolor/22x22/actions/formulashape.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/abs.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/brackets.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/frac.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/gsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/gsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/int.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/lsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/lsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/matrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/multiline.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/onetwomatrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/over.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/paren.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/prod.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/rsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/rsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/sqrt.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/sum.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/16x16/actions/under.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/abs.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/brackets.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/frac.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/gsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/gsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/inscol.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/insrow.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/int.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/lsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/lsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/matrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/multiline.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/onetwomatrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/over.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/paren.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/prod.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/remcol.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/remrow.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/rsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/rsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/sqrt.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/sum.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/22x22/actions/under.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/abs.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/brackets.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/frac.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/gsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/gsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/int.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/lsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/lsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/matrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/multiline.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/onetwomatrix.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/over.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/paren.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/prod.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/rsub.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/rsup.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/sqrt.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/sum.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/hicolor/32x32/actions/under.png exists in both 'kdelibs' and 'koffice'
/usr/share/icons/oxygen/128x128/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/16x16/actions/transform-crop-and-resize.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/16x16/actions/view-object-histogram-linear.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/16x16/actions/view-object-histogram-logarithmic.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/16x16/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/22x22/actions/transform-crop-and-resize.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/22x22/actions/view-object-histogram-linear.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/22x22/actions/view-object-histogram-logarithmic.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/22x22/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/32x32/actions/transform-crop-and-resize.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/32x32/actions/view-object-histogram-linear.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/32x32/actions/view-object-histogram-logarithmic.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/32x32/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/48x48/actions/transform-crop-and-resize.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/48x48/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/64x64/apps/digikam.png exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/scalable/actions/transform-crop-and-resize.svgz exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/scalable/actions/view-object-histogram-linear.svgz exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/scalable/actions/view-object-histogram-logarithmic.svgz exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/scalable/apps/digikam.svgz exists in both 'kdebase' and 'extragear-graphics'
/usr/share/icons/oxygen/16x16/actions/format-justify-center.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-justify-fill.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-justify-left.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-justify-right.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-text-bold.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-text-italic.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/format-text-underline.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-group.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-order-back.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-order-front.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-order-lower.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-order-raise.png exists in both 'kdebase' and 'koffice'
/usr/share/icons/oxygen/16x16/actions/object-ungroup.png exists in both 'kdebase' and 'koffice'
/usr/share/apps/kdevappwizard/templates/qmake_qt4guiapp.tar.bz2 exists in both 'kdesdk' and 'kdevelop'
Errors occurred, no packages were upgraded.
I have no idea how to solve this, except by force install.
All are duplicates, and removing either of these will work, however, it's recomended to prefer those from kdelibs,kdebase and kdesdk, as those are the base packages.....
EDIT: Well I'm quite new to Arch, so I learn as speak.
Anyway, what I found out is that you can make a so called post-install script, which is executed after make install and before making a package. It can easily be added to PKGBUILDs with install=$pkgname.install, and I suppose it can be used to remove these duplicates and solve the problem....
Well, at least I think. As I said, I'm quite new to this.
Last edited by Githzerai (2008-10-28 12:01:01)
Offline
@Githzerai: thanks for the hint about the dud krusader dependency, fixed. As for the huge number of duplicate files, that can be a sign of an unfortunate svn checkout in the middle of an upstream repo move that has not been properly completed. I usually don't bother trying to work around them unless they don't go away after a week or so. By the time I try and patch it up these duplicate files are often fixed and I then have a hacked PKGBUILD that needs to be unhacked. However, it's quite likely this approach is simply an alias for being lazy ;-)
You are doing well for an ArchLinux "beginner". The post-install script could be used to tidy these dupes up but it could also be done in the PKGBUILD itself, at the end of the build() function, so they are not even included in the binary package, FWIW.
Offline