You are not logged in.

#26 2006-08-14 09:34:47

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: [solved] How Install custom Package

make[1]: Leaving directory `/home/flo/test/src/gajim-0.10.1/src/common'
intltool-merge -d po gajim.desktop.in gajim.desktop
make: intltool-merge: Command not found
make: *** [gajim.desktop] Error 127
==> ERROR: Build Failed.  Aborting...

The next one..

How can I see which programm include the "intltool-merge"


Have you tried to turn it off and on again?

Offline

#27 2006-08-14 09:42:28

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: [solved] How Install custom Package

You can't, unless you have it installed, unfortunately. The package is intltool, and it should go in makedepends.

Offline

#28 2006-08-14 09:48:59

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: [solved] How Install custom Package

Now it work, big thanks tomk tongue

Now one question:

Here is the PKGBUILD,

# Maintainer: Mark Rosenstand <mark>
# Contributor: Nikos Kouremenos <kourem>

pkgname=gajim
pkgver=0.10.1
pkgrel=2
pkgdesc="Jabber client written in PyGTK"
arch=(i686 x86_64)
url="http://www.gajim.org/"
depends=('gtkspell' 'dnsutils' 'pygtk' 'python-pysqlite')
makedepends=('gettext' 'intltool' 'scrnsaverproto' 'libxss')
source=(http://www.gajim.org/downloads/gajim-$pkgver.tar.gz 
http://trac.gajim.org/attachment/ticket/2178/transparent-tray.diff?format=raw)
md5sums=('f7ea7c9932f9e099d0525fe072552e8a' 'a25fd509c9626e13921de297e670973a')

build() {
  mv transparent-tray.diff?format=raw patch.diff
  cd $startdir/src/gajim-$pkgver
  patch -p1 -i patch.diff || return 1
  make || return 1
  make DESTDIR=$startdir/pkg PREFIX=/usr install
}

are scrnsaverproto and libxss makedepends or normal depends?

when I upload these to AUR schould I replace the first line right?


Have you tried to turn it off and on again?

Offline

#29 2006-08-14 10:55:05

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: [solved] How Install custom Package

fk wrote:

are scrnsaverproto and libxss makedepends or normal depends?

libxss depends on scrnsaverproto, so you only need to specify libxss, and it should go in depends, as gajim will link to it at runtime.

fk wrote:

when I upload these to AUR schould I replace the first line right?

Well .... I know you've put a lot of work into this, and I don't want to discourage you, but personally I don't think this should go in the AUR, as it is identical to the official package except for one minor cosmetic change. You can always post a feature request for the devs to consider.

However, if you really want to go ahead, I won't delete it. You will, of course, have to change the pkgname, and add provides= and conflicts= parameters.

Whether it goes in the AUR or not, please provide the patch as a separate file, rather than using that unwieldy URL and mv command. You should download it, keep its original name (transparent-tray.diff), and provide it with the PKGBUILD.

Offline

#30 2006-08-14 11:02:13

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: [solved] How Install custom Package

libxss depends on scrnsaverproto, so you only need to specify libxss, and it should go in depends, as gajim will link to it at runtime.

Hm but when I install scrnsaverproto, libxss will not installed.

Well .... I know you've put a lot of work into this, and I don't want to discourage you, but personally I don't think this should go in the AUR, as it is identical to the official package except for one minor cosmetic change. You can always post a feature request for the devs to consider.

However, if you really want to go ahead, I won't delete it. You will, of course, have to change the pkgname, and add provides= and conflicts= parameters.

Whether it goes in the AUR or not, please provide the patch as a separate file, rather than using that unwieldy URL and mv command. You should download it, keep its original name (transparent-tray.diff), and provide it with the PKGBUILD.

It must be not uploaded in AUR, in the gajim cvs this patch is included, but the cvs package in AUR is broken, this was the reason why i build these package


Have you tried to turn it off and on again?

Offline

#31 2006-08-14 11:10:46

tomk
Forum Fellow
From: Ireland
Registered: 2004-07-21
Posts: 9,839

Re: [solved] How Install custom Package

fk wrote:

Hm but when I install scrnsaverproto, libxss will not installed.

That's right  - you installed scrnsaverproto first. If you had installed libxss first, it would have brought in scrnsaverproto as a dependency.

fk wrote:

It must be not uploaded in AUR, in the gajim cvs this patch is included, but the cvs package in AUR is broken, this was the reason why i build these package

Yes - I see you have edited your post to remove the bit about the AUR that I have already quoted!

Offline

#32 2006-08-14 11:23:14

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: [solved] How Install custom Package

I see you have edited your post to remove the bit about the AUR that I have already quoted!

hehe and I have seen that you have quoted and have edited back big_smile


Have you tried to turn it off and on again?

Offline

#33 2006-08-17 21:30:27

Lone_Wolf
Member
From: Netherlands, Europe
Registered: 2005-10-04
Posts: 11,868

Re: [solved] How Install custom Package

This is the link to the ticket info :
http://trac.gajim.org/ticket/2178/

It doesn't give much info, but there is a mention that it is already implemented in the cvs version of gajim.
It seems the patch comes from Ubuntu, so if you need more info there are 2 ways i can think of :
check ubuntu forums
mail the contributor of the patch, the email address is in the ticket info.


Disliking systemd intensely, but not satisfied with alternatives so focusing on taming systemd.


(A works at time B)  && (time C > time B ) ≠  (A works at time C)

Offline

#34 2006-08-17 22:04:28

fk
Member
From: Germany
Registered: 2006-04-29
Posts: 524

Re: [solved] How Install custom Package

Lone_Wolf wrote:

This is the link to the ticket info :
http://trac.gajim.org/ticket/2178/

It doesn't give much info, but there is a mention that it is already implemented in the cvs version of gajim.
It seems the patch comes from Ubuntu, so if you need more info there are 2 ways i can think of :
check ubuntu forums
mail the contributor of the patch, the email address is in the ticket info.

Hi

Thanks, but I have had no more problems i have patched succsesfully


Have you tried to turn it off and on again?

Offline

Board footer

Powered by FluxBB