You are not logged in.

#1 2007-06-22 12:14:59

matiit
Member
From: Poland
Registered: 2007-04-13
Posts: 141
Website

New amarok

Ubuntu and Fedora already get it smile
when Amarok 1.4.6 will be in Extra ?

Offline

#2 2007-06-25 23:56:24

matiit
Member
From: Poland
Registered: 2007-04-13
Posts: 141
Website

Re: New amarok

boyen:
I already build myself amarok 1.4.6
If you want I can send you package.
Write for matiqing@gmail.com or matiqing@o2.pl

Offline

#3 2007-06-26 00:12:19

somairotevoli
Member
Registered: 2006-05-23
Posts: 335

Re: New amarok

Could you place the PKGBUILD here?
I tried altering the PKGBUILD myself w/ no luck, so I just built and installed 1.4.6 myself. I would like to do it proper though.

This is a pretty major app not to be updated and put it the repo after almost a week.

Offline

#4 2007-06-26 07:08:46

Acid7711
Member
From: Chicago, IL
Registered: 2006-08-18
Posts: 300
Website

Re: New amarok

+1 for me waiting as well. smile

Offline

#5 2007-06-26 08:03:42

scarney
Member
From: Wisconsin, US
Registered: 2006-07-11
Posts: 173

Re: New amarok

< waiter! 8)

Offline

#6 2007-06-26 08:41:44

newgargamel
Member
From: PL, CZ
Registered: 2005-08-28
Posts: 156

Re: New amarok

You can compile it by yourself, just modify PKGBUILD from 1.4.5 to .6 and remove magnatune patch. It works for me smile

Offline

#7 2007-06-26 09:05:03

RaisedFist
Member
From: Romania
Registered: 2007-01-30
Posts: 556
Website

Re: New amarok

...waiting...

Offline

#8 2007-06-26 11:13:34

n8schicht
Member
From: Südbaden
Registered: 2006-12-27
Posts: 138
Website

Re: New amarok

newgargamel wrote:

You can compile it by yourself, just modify PKGBUILD from 1.4.5 to .6 and remove magnatune patch. It works for me smile

Where is the PKGBUILD from 1.4.5? I just cannot find it...

Offline

#9 2007-06-26 11:16:15

w0c45_x86
Member
From: CZ, Pilsen
Registered: 2005-10-18
Posts: 21

Re: New amarok

n8schicht wrote:
newgargamel wrote:

You can compile it by yourself, just modify PKGBUILD from 1.4.5 to .6 and remove magnatune patch. It works for me smile

Where is the PKGBUILD from 1.4.5? I just cannot find it...

Try ABS smile

Offline

#10 2007-06-26 11:29:46

newgargamel
Member
From: PL, CZ
Registered: 2005-08-28
Posts: 156

Re: New amarok

n8schicht wrote:
newgargamel wrote:

You can compile it by yourself, just modify PKGBUILD from 1.4.5 to .6 and remove magnatune patch. It works for me smile

Where is the PKGBUILD from 1.4.5? I just cannot find it...

/var/abs/extra/multimedia/amarok-base and amarok-engine-xine

Offline

#11 2007-06-26 11:38:36

newgargamel
Member
From: PL, CZ
Registered: 2005-08-28
Posts: 156

Re: New amarok

# $Id: PKGBUILD,v 1.43 2007/04/08 06:48:25 tpowa Exp $
# Maintainer: damir <damir@archlinux.org>

pkgname=amarok-base
_origname=amarok
replaces=("${_origname}" 'amarok-base-mysqlfree')
pkgver=1.4.6
pkgrel=1
pkgdesc="amaroK - a media player for KDE"
arch=("i686" "x86_64")
url="http://amarok.sourceforge.net/"
depends=('amarok-engine' 'libmp4v2' 'libmysqlclient>=5.0.25' 'postgresql-libs>=8.2.3' 'ruby' 'tunepimp>=0.5.3')
makedepends=('pkgconfig' 'kdebase>=3.5.6' 'libgpod>=0.4.2' 'libifp' 'libmtp>=0.1.3' 'libnjb>=2.0' 'libvisual>=0.4.0' 'xine-lib' 'sdl')
# advanced scripting depends on python
install=amarok.install
#source=(http://mark.kollide.net/amarok-${pkgver}.tar.bz2
source=("ftp://ftp.solnet.ch/mirror/KDE/stable/amarok/${pkgver}/src/${_origname}-${pkgver}.tar.bz2"
    amarok_addaspodcast.desktop)

build() {
  export MAKEFLAGS="-j1"
  cd ${startdir}/src/${_origname}-${pkgver}
  [ -z "${QTDIR}" ] && . /etc/profile.d/qt.sh
  [ -z "${KDEDIR}" ] && . /etc/profile.d/kde.sh

  ./configure --prefix=/opt/kde \
      --with-gnu-ld \
    --enable-mysql \
    --enable-postgresql \
    --with-mp4v2 \
    --with-ifp \
    --with-libnjb \
    --with-libmtp \
    --with-libgpod \
    --without-arts \
    --without-gstreamer \
    --with-xine \
    --without-nmm \
    --without-mas \
    --with-libvisual \
    --disable-debug \
    --enable-debug=no \
    --without-xmms || return 1
  make || return 1
  make DESTDIR=${startdir}/pkg install || return 1

  # remove xine engine from pkg... separate pkg
  rm ${startdir}/pkg/opt/kde/lib/kde3/libamarok_xine-engine.{la,so}
  rm ${startdir}/pkg/opt/kde/share/config.kcfg/xinecfg.kcfg
  rm ${startdir}/pkg/opt/kde/share/services/amarok_xine-engine.desktop

  mkdir -p ${startdir}/pkg/opt/kde/share/apps/konqueror/servicemenus/
  install -m644 ${startdir}/src/amarok_addaspodcast.desktop ${startdir}/pkg/opt/kde/share/apps/konqueror/servicemenus/
}
md5sums=()

You can change dependences like that:
depends=('amarok-engine' 'libmp4v2' 'ruby' 'tunepimp>=0.5.3')
makedepends=('pkgconfig' 'kdebase>=3.5.6' 'libvisual>=0.4.0' 'xine-lib' 'sdl')

# $Id: PKGBUILD,v 1.29 2007/03/19 22:28:04 andyrtr Exp $
# Maintainer: damir <damir@archlinux.org>

_enginename=xine
_origname=amarok
pkgname=${_origname}-engine-${_enginename}
pkgver=1.4.6
pkgrel=1
pkgdesc="${_enginename} engine for amaroK"
arch=(i686 x86_64)
url="http://amarok.sourceforge.net/"
depends=('xine-lib>=1.1.3' 'kdelibs>=3.5.6' 'taglib>=1.4' 'tunepimp>=0.5.3' 'libxrender')
makedepends=('pkgconfig' 'ruby')
provides=('amarok-engine')
source=(ftp://ftp.solnet.ch/mirror/KDE/stable/amarok/${pkgver}/src/${_origname}-${pkgver}.tar.bz2)

build() {
  export MAKEFLAGS="-j1"
  [ -z "${QTDIR}" ] && . /etc/profile.d/qt.sh
  [ -z "${KDEDIR}" ] && . /etc/profile.d/kde.sh
  cd ${startdir}/src/${_origname}-${pkgver}
  ./configure --prefix=/opt/kde --with-gnu-ld --disable-debug --enable-debug=no
  cd amarok/src || return 1
  make || return 1
  cd engine/${_enginename} || return 1
  make DESTDIR=${startdir}/pkg install || return 1
}

Offline

#12 2007-06-26 11:46:30

n8schicht
Member
From: Südbaden
Registered: 2006-12-27
Posts: 138
Website

Re: New amarok

lol Thank you guys!
Actually this is not the first time that I build my own packages, but to be honest I never really looked at /var/abs and this whole ABS-thing. Funny. Building right now  wink

Offline

#13 2007-06-26 12:22:43

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: New amarok

If you get it to work, can you put it online please, or share it in another way? smile

I've been trying to build this thing myself but it is not working at all sad.

Thank you!


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#14 2007-06-26 13:03:44

newgargamel
Member
From: PL, CZ
Registered: 2005-08-28
Posts: 156

Re: New amarok

B,
You have to build first PKGBUILD and install it: pacman -U amarok*
then you have to build second PKGBUILD and install it the same way

What's not working for you?

Offline

#15 2007-06-26 14:09:51

matiit
Member
From: Poland
Registered: 2007-04-13
Posts: 141
Website

Re: New amarok

Offline

#16 2007-06-26 14:55:10

kishd
Member
Registered: 2006-06-14
Posts: 401

Re: New amarok

Thank you very much, matiit.


---for there is nothing either good or bad, but only thinking makes it so....
Hamlet, W Shakespeare

Offline

#17 2007-06-26 15:29:52

n8schicht
Member
From: Südbaden
Registered: 2006-12-27
Posts: 138
Website

Re: New amarok

I once set up a small repository where you can also find the new amarok 1.4.6 (besides other stuff):

[n8schicht]
Server = http://n8schicht.pytalhost.com/archrepo

Have fun with Amarok!

Offline

#18 2007-06-26 15:51:29

matiit
Member
From: Poland
Registered: 2007-04-13
Posts: 141
Website

Re: New amarok

n8schicht
I think it is not sens to make repo specially for amarok

Offline

#19 2007-06-26 15:56:13

n8schicht
Member
From: Südbaden
Registered: 2006-12-27
Posts: 138
Website

Re: New amarok

Right, Amarok is in there besides other stuff (as mentioned above)  wink

Offline

#20 2007-06-26 16:06:40

Acid7711
Member
From: Chicago, IL
Registered: 2006-08-18
Posts: 300
Website

Re: New amarok

Yeah, you could use another repo or compile it yourself, but yeah as it's been said, it's a pretty major application to be updated shit slow. I'd have figured others would have wanted to jump on this as soon as it hit open fields.  I have no problem compiling things or making/updating pkgbuilds, I'd just rather not have to do it unless absolutely required (as in most cases if the app is some little thing unknown to most people).

Offline

#21 2007-06-26 16:09:40

shining
Pacman Developer
Registered: 2006-05-10
Posts: 2,043

Re: New amarok

People are too impatient smile


pacman roulette : pacman -S $(pacman -Slq | LANG=C sort -R | head -n $((RANDOM % 10)))

Offline

#22 2007-06-27 08:49:06

Lifty
Member
Registered: 2006-11-05
Posts: 62

Re: New amarok

shining wrote:

People are too impatient smile

True! It was released on the 21. so where is it? wink

Offline

#23 2007-06-27 08:56:46

matiit
Member
From: Poland
Registered: 2007-04-13
Posts: 141
Website

Re: New amarok

In underground big_smile:D

Offline

#24 2007-06-27 10:19:16

.:B:.
Forum Fellow
Registered: 2006-11-26
Posts: 5,819
Website

Re: New amarok

newgargamel wrote:

B,
You have to build first PKGBUILD and install it: pacman -U amarok*
then you have to build second PKGBUILD and install it the same way

What's not working for you?

It turned out amarok complained about libcurl, while the true culprit was my tunepimp package which i had to rebuild smile. So it's all good now wink.


Got Leenucks? :: Arch: Power in simplicity :: Get Counted! Registered Linux User #392717 :: Blog thingy

Offline

#25 2007-06-28 06:41:23

somairotevoli
Member
Registered: 2006-05-23
Posts: 335

Re: New amarok

now it's been a week;)

Last edited by somairotevoli (2007-06-28 06:41:48)

Offline

Board footer

Powered by FluxBB