You are not logged in.
Pages: 1
Just wondering about this package. The kde 3.2 packages came out the same day as kde 3.2 was released, and kdevelop seems to be forgotten. There's a CVS version for it, but not the final. Any news about it?
Offline
I modified the old 2.X PKGBUILD file to compile the new version. if everything succeeds, I'll post the PKGBUILD here. But as far as I can tell, a kdelibs rebuilt is necessary to get the currently missing kdelibs documentation generated (doxygen dependency missing in kdelibs).
Offline
Okay, everything seems to have compiled successfully. If you need the kdelibs-docs, you have to rebuild kdelibs. Here are both modified PKBUILD files:
kdelibs:
pkgname=kdelibs
pkgver=3.2.0
pkgrel=2
pkgdesc="KDE Core Libraries."
pkgurl="ftp://ftp.us.kde.org/pub/kde/stable/3.2/src"
url="http://www.kde.org"
groups=('kde')
makedepends=('doxygen')
depends=('arts=1.2.0' 'libxslt' 'pcre' 'lesstif' 'libart-lgpl'
'fam' 'openldap' 'cups' 'bzip2' )
install="$pkgname.install"
source=($pkgurl/$pkgname-$pkgver.tar.bz2 $pkgname.install kde.profile)
md5sums=('24be0d558725f4d3441fb9d580129720' '8d3865eeb3bc37defb007d04a1234c77'
'b6c31db59b452a4a00648dbf37d04d88')
build() {
cd $startdir/src/$pkgname-$pkgver
./configure --prefix=/opt/kde --with-distribution="Arch Linux"
--disable-debug --with-alsa
--enable-fast-malloc=full --disable-dependency-tracking
--enable-final # remove this if you build with < 512mb ram.
make || return 1
make apidox || return 1
make DESTDIR=$startdir/pkg install || return 1
# add a kde profile
install -D -m755 $startdir/kde.profile
$startdir/pkg/etc/profile.d/kde.sh
}
kdevelop:
pkgname=kdevelop
pkgver=3.0.1
pkgrel=1
pkgdesc="A C++ development environment for KDE"
depends=('kdebase' 'graphviz')
pkgurl="ftp://download.uk.kde.org/pub/kde/stable/kdevelop-$pkgver/src"
source=($pkgurl/${pkgname}-${pkgver}.tar.bz2)
build() {
cd ${startdir}/src/${pkgname}-${pkgver}
./configure --prefix=/opt/kde
make || return 1
make DESTDIR=$startdir/pkg install
rm -f ${startdir}/pkg/opt/kde/bin/extractrc
}
Offline
as new maintainer of kdevelop, i'm going to rebuild it with these dependences:
('kdebase>=3.2.0' 'kdesdk>=3.2.0' 'graphviz' 'flex>=2.5.4' 'gcc' 'perl' 'make' 'automake>=1.6' 'autoconf>=2.52' 'gettext' 'db' 'cvs')
// this is bug: http://bugs.archlinux.org/index.php?do=details&id=474
for kdelibs-docs i opened a bug:
The impossible missions are the only ones which succeed.
Offline
kdevelop 3.0.1 is online and working ... but i will "soon" have to recompile it again for doxygen, because at the moment kdelibs is recompiling and will be soon available with the api of the libs
if you can wait, wait for the next release to have to download it only once
The impossible missions are the only ones which succeed.
Offline
Pages: 1