[arch-ports] Development of Arch64 / site arch64.org still down
Hello, I am a new arch64 user and I am interested in making Arch64 an good, perhaps the best 64-bit distribution. At the moment I am using Arch32 as some applications are not available in Arch64, so I try to compile them here (with more or less success). My base Arch64 system is running and digikam works already :) What about arch64.org? - it is still down. Do you know when the site will be up again? Another question about package updates: Will updates still be made with pacman in Arch64 or ist there another solution planned? And, at last: If I suceed in compiling some programs I use (just working on digikam and postfix - having trouble with mc, acroread, openoffice.org2) - are you interested in the results (PKGBUILDs, binaries, problems I have)? Shall compilation problems and possible solutions be discussed on this mailing list? Dieter
Dieter Rethmeyer schrieb:
Hello,
I am a new arch64 user and I am interested in making Arch64 an good, perhaps the best 64-bit distribution. At the moment I am using Arch32 as some applications are not available in Arch64, so I try to compile them here (with more or less success). My base Arch64 system is running and digikam works already :)
What about arch64.org? - it is still down. Do you know when the site will be up again?
Another question about package updates: Will updates still be made with pacman in Arch64 or ist there another solution planned?
And, at last: If I suceed in compiling some programs I use (just working on digikam and postfix - having trouble with mc, acroread, openoffice.org2) - are you interested in the results (PKGBUILDs, binaries, problems I have)? Shall compilation problems and possible solutions be discussed on this mailing list?
Dieter
_______________________________________________ arch-ports mailing list arch-ports@archlinux.org http://www.archlinux.org/mailman/listinfo/arch-ports
The site is up: http://arch64.org/ Let´s meet in irc #archlinux64 AndyRTR
Just use this pkgbuild to fix it! # $Id: PKGBUILD,v 1.16 2005/10/26 21:41:58 judd Exp $ # Maintainer: judd <jvinet@zeroflux.org> pkgname=ncurses pkgver=5.5 pkgrel=2 pkgdesc="A System V Release 4.0 curses emulation library" url="http://www.gnu.org/software/ncurses/ncurses.html" depends=('glibc') install=ncurses.install source=(ftp://ftp.gnu.org/pub/gnu/$pkgname/$pkgname-$pkgver.tar.gz) md5sums=('e73c1ac10b4bfc46db43b2ddfd6244ef') build() { # The chtype/mmask-t settings below are to retain ABI compat # with ncurses-5.4 so dont change em ! cd $startdir/src/$pkgname-$pkgver ./configure --prefix=/usr \ --with-shared --with-normal --without-debug --without-ada \ --with-install-prefix=$startdir/pkg \ --with-chtype='long' --with-mmask-t='long' make || return 1 make install mkdir -p $startdir/pkg/lib cd $startdir/pkg/usr/lib mv libncurses.so.$pkgver ../../lib ln -sf ../../lib/libncurses.so.$pkgver libncurses.so.$pkgver cd $startdir/pkg/lib ln -sf libncurses.so.$pkgver libncurses.so.5 rm -f $startdir/pkg/lib/libcurses.so # build unicode support libs cd $startdir/src/$pkgname-$pkgver make clean ./configure --prefix=/usr \ --with-shared --with-normal --without-debug --without-ada \ --with-install-prefix=$startdir/pkg --enable-widec \ --with-chtype='long' --with-mmask-t='long' make || return 1 make install }
participants (2)
-
Andreas Radke
-
Dieter Rethmeyer