You are not logged in.
Pages: 1
I would wish a package for the opera browser and for SIM (http://sim-icq.sourceforge.net/).
PURE-Digital-World - My Homepage
German Arch Linux HowTo - Installation and first steps
(Deutschsprachiges Howto für Anfänger)
Offline
There's a Opera 7.23 package in contrautra's TUR. Just add this to your /etc/pacman.conf.
[contrasutra]
Server = ftp://ftp.berlios.de/pub/tur/contrasutra
Then type
pacman -Sy
pacman -S opera
That will install Opera for you.
Offline
Thank you for this hint
PURE-Digital-World - My Homepage
German Arch Linux HowTo - Installation and first steps
(Deutschsprachiges Howto für Anfänger)
Offline
No problem...Sorry I should have also included the link to the tur page which is tur.berlios.de. There are several tur repos that contain packages..
Offline
I would wish a package for the opera browser and for SIM (http://sim-icq.sourceforge.net/).
I was looking for the sim package quite long and I thought why don't try it on your own? Anyway it was pretty uncool to compile it (had to downgrade one package to compile...), but finally I did a package that worked on 2 computers of mine but didn't work on a friend's computer :?
So if you could just give it a try:
1. Download http://www.tu-bs.de/~y0016069/sim-0.9.3-1.pkg.tar.gz
2. Do a pacman -A sim-0.9.3-1.pkg.tar.gz
3. Now you could start it with sim
Perhaps some dependencies are missing, if so please post them in here
Offline
Ok, I could install it without any error messages. But executing it with "sim" resulted in followeing error message:
sim: error while loading shared libraries: libart_lgpl_2.so.2: cannot open shared object file: No such file or directory
Then I installed the package libart-lgpl with pacman -S libart-lgpl. No I tried again a "sim", a lot of plugins were loaded and I got the error message "Segmentation fault".
PURE-Digital-World - My Homepage
German Arch Linux HowTo - Installation and first steps
(Deutschsprachiges Howto für Anfänger)
Offline
the thing with sim is that it doesn`t compile on "normal" arch-system without some tweaks.
1. You have to change a file in sim/admin to allow automake
2. You have to downgrade to a version of flex from '97 (.4a, the actual one is .27).
I mentioned this stuff to the developers, perhaps this weekend there will be a solution and then I will construct an appropriate PKGBUILD.
Offline
I have made a package for sim: http://bbs.archlinux.org/viewtopic.php?p=15995#15995
Offline
How about one for the preview release (Opera 7.5 Preview 3)?
Offline
Here is a PKGBUILD for opera 750p3 which should be easy to edit for the latest beta releases and hopefully not interfere with the latest stable package.
pkgname=operabeta
pkgver=7.50P3
operaver=7.50
operarel=20040309.1
pkgrel=3
pkgdesc="Opera web browser. This is the latest beta version."
url="www.opera.com"
depends=('xfree86' 'freetype2')
source=(http://snapshot.opera.com/unix/7.50-Preview-3/intel-linux/en/opera-$operaver-$operarel-static-qt.i386-en.tar.gz)
build() {
cd $startdir/src/opera-$operaver-$operarel-static-qt.i386-en
./install.sh --prefix=$startdir/pkg/opt/operabeta
sed -i "s|$startdir/pkg/opt|/opt|g" $startdir/pkg/opt/operabeta/bin/opera
sed -i "s|$startdir/pkg/opt/operabeta|/opt/operabeta|g" $startdir/pkg/opt/operabeta/share/opera/java/opera.policy
rm -r $startdir/pkg/opt/operabeta/share/doc
}
okay here we go again...this pkgbuild should now be good to go. got the $startdir to work. Hopefully this will be the last edit
Offline
How about changing /var/tmp/operabeta to $startdir?
I have discovered that all of mans unhappiness derives from only one source, not being able to sit quietly in a room
- Blaise Pascal
Offline
Heh, Terrapin you beat me to it. I'm installing one I just made right now which I was going to post up here.
(BTW, the comment said Terrapin's PKGBUILD simply edited to get the beta version)
Offline
Sorry for all the edits. The PKGBUILD should be good to go now.
Offline
Boy, that was quick!
Thanks.
Offline
Would someone be so kind as to point me to a resource on how to install pkgbuilds in Arch? I see people posting them as above, but how would I then use this to install Opera 7.5? :?:
Thanks.
Offline
I would suggest creating a build environment (working directory). You can use any directory you want but for this post I will use varabslocaloperabeta
pkgname=operabeta
pkgver=7.50P4
operaver=7.50
operarel=20040414.1
pkgrel=0
pkgdesc="Opera web browser. This is the latest beta version."
url="www.opera.com"
depends=('xfree86' 'freetype2')
source=(http://snapshot.opera.com/unix/7.50-Preview-4/intel-linux/en/opera-$operaver-$operarel-static-qt.i386-en.tar.gz)
build() {
cd $startdir/src/opera-$operaver-$operarel-static-qt.i386-en
./install.sh --prefix=$startdir/pkg/opt/operabeta
sed -i "s|$startdir/pkg/opt|/opt|g" $startdir/pkg/opt/operabeta/bin/opera
sed -i "s|$startdir/pkg/opt/operabeta|/opt/operabeta|g" $startdir/pkg/opt/operabeta/share/opera/java/opera.policy
rm -r $startdir/pkg/opt/operabeta/share/doc
}
All you have to do is copy the contents above into a "PKGBUILD" file for preview 4. Then run the following commands.
$makepkg
This makes the Arch package.
#pacman -A operabeta-7.50P4-0.pkg.tar.gz
This installs the package. There you go Opera 7.5P4 installed. You can then find the Opera bin at
/opt/operabeta/bin/opera
hth
Offline
What do you mean by "copy the above contents into a PKGBUILD file'? I understand making the directory and copying the contents *somewhere*, but perhaps I need a little more detail. Sorry, it will be immediately after I do it, but..
Thanks for the reply!
Offline
If you have gvim you can copy and paste the contents above into a file with the name "PKGBUILD". So that you have a "PKGBUILD" file in your build environment.
[normnmiles@hristo beta]$ pwd
/var/abs/local/opera/beta
[normnmiles@hristo beta]$ ls -l
total 10300
-rwxrwxrwx 1 normnmiles users 789 Apr 17 10:40 PKGBUILD
-rwxrwxrwx 1 normnmiles users 5738 Apr 17 10:41 filelist
-rw-r--r-- 1 normnmiles users 5255209 Apr 17 10:41 opera-7.50-20040414.1-static-qt.i386-en.tar.gz
-rw-r--r-- 1 normnmiles users 5239974 Apr 17 10:41 operabeta-7.50P4-0.pkg.tar.gz
drwxr-xr-x 3 normnmiles users 4096 Apr 17 10:41 pkg
drwxr-xr-x 3 normnmiles users 4096 Apr 17 10:41 src
[normnmiles@hristo beta]$ cat PKGBUILD
#maintainer: me
pkgname=operabeta
pkgver=7.50P4
operaver=7.50
operarel=20040414.1
pkgrel=0
pkgdesc="Opera web browser. This is the latest beta version."
url="www.opera.com"
depends=('xfree86' 'freetype2')
source=(http://snapshot.opera.com/unix/7.50-Preview-4/intel-linux/en/opera-$operaver-$operarel-static-qt. i386-en.tar.gz)
build() {
cd $startdir/src/opera-$operaver-$operarel-static-qt.i386-en
./install.sh --prefix=$startdir/pkg/opt/operabeta
sed -i "s|$startdir/pkg/opt|/opt|g" $startdir/pkg/opt/operabeta/bin/opera
sed -i "s|$startdir/pkg/opt/operabeta|/opt/operabeta|g" $startdir/pkg/opt/operabeta/share/opera/java/op era.policy
rm -r $startdir/pkg/opt/operabeta/share/doc
}
[normnmiles@hristo beta]$
Offline
Cool, learned something new.
Thanks again.
Offline
Opera 7.50 for Linux i386 Final
http://www.opera.com/download/index.dml … nux%20i386
Offline
Pages: 1