You are not logged in.

#1 2008-12-16 19:06:29

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

error when building gyachi [finally SOLVED]

now when i go to issue the command

 makepkg -s

i get the following error

configure: error: cannot find include files for libpulse-simple.  Perhaps you need to install the libpulse or libpulse-simple development package?
make: *** No targets specified and no makefile found.  Stop.

what exactly do i need to fufill this dependency is it to install pulseadio package??

and also one more question how do i go about generating or finding the md5sum for this package that i want to build i am new to building packages in Arch Linux and i already exhausted looking at google.

Last edited by okplayer02 (2008-12-20 23:27:46)


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#2 2008-12-17 00:10:44

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: error when building gyachi [finally SOLVED]

Yes, install pulseaudio.

You need to generate md5sums for the source, not the package. It's 'makepkg -g'

Offline

#3 2008-12-17 00:46:33

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

well that did it for me i had to install pulse-audio and imagemagick to build it properly i figured just wanted to be sure about that


however once i install the program with pacman it complains of a the following error when i try to run it


gyachi: error while loading shared libraries: libgyachi.so: cannot open shared object file: No such file or directory

i looked in the source folder where i built it and this file is not present where do i go to find this lib

Last edited by okplayer02 (2008-12-17 13:38:57)


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#4 2008-12-18 14:39:55

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

can anyone help me with the building of this package i got it compiled but is missing this library to run the program.


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#5 2008-12-18 21:13:45

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: error when building gyachi [finally SOLVED]

That library should've been installed when you installed the package. Make sure there was no error when building the package. The library might be in a hidden directory in the source folder. That might be why you didn't find it. Posting the PKGBUILD would help.

Offline

#6 2008-12-19 06:56:15

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

here is a copy of the pkgbuild

# An adaptation by Tajidin Abd <>
# Ex-Contributor: Conor Callahan <>
pkgname=gyachi
pkgver=1.1.59
pkgrel=1
arch=('i686')
pkgdesc="Improved Yahoo! client for Linux"
depends=('libgtkhtml' 'jasper' 'xmms' 'libmcrypt' 'gpgme' 'codecs')
source=(http://heanet.dl.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
url="http://gyachi.sourceforge.net"
license="GPL"
md5sums=('e9c8767b35b3bf17ea152ed79c9c8ef0')
build() {
      cd $startdir/src/$pkgname-$pkgver
      ./autogen.sh
        ./configure --prefix=/usr --enable-v4l2 --disable-gtktest --disable-glibtest \
          --with-x
            make || return 1
          make DESTDIR=$startdir/pkg install
            
            # Remove conflicting codec files
              rm -rf $startdir/pkg/usr/lib
          }

i will look to see if there was any err0rs but strange i figured if its missing a lib like this it wont compile successfully

Last edited by okplayer02 (2008-12-19 06:56:57)


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#7 2008-12-19 09:54:16

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: error when building gyachi [finally SOLVED]

if you have a multi-core or multi-CPU system, try to add:
options=('!makeflags')
to the PKGBUILD.

Offline

#8 2008-12-19 13:16:24

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

well i dont have a multicore its just a pentium-m processor but i will keep searching to see about this lib that is missing


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#9 2008-12-19 22:08:41

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: error when building gyachi [finally SOLVED]

I'm trying to build it. I'll let you know if I found something.

Offline

#10 2008-12-19 22:53:20

Snowman
Developer/Forum Fellow
From: Montreal, Canada
Registered: 2004-08-20
Posts: 5,212

Re: error when building gyachi [finally SOLVED]

I found the problem. The 'rm -rf $startdir/pkg/usr/lib' was removinbg the lib from the package. Anyway, use the PKGBUILD below. I've made several other fixes.

# An adaptation by Tajidin Abd <>
# Ex-Contributor: Conor Callahan <>
pkgname=gyachi
pkgver=1.1.59
pkgrel=1
pkgdesc="Improved Yahoo! client for Linux"
arch=('i686')
url="http://gyachi.sourceforge.net"
license=('GPL')
depends=('libgtkhtml' 'jasper' 'xmms' 'libmcrypt' 'gpgme' 'codecs' 'libnotify' 'pulseaudio' 'gtkspell')
makedepends=('imagemagick')
options=('!makeflags' '!libtool')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('e9c8767b35b3bf17ea152ed79c9c8ef0')

build() {
  cd $startdir/src/$pkgname-$pkgver
  ./autogen.sh || return 1
  ./configure --prefix=/usr --libexecdir=/usr/lib --enable-v4l2 --disable-gtktest --disable-glibtest \
    --with-x || return 1
  make || return 1
  make DESTDIR=$startdir/pkg install || return 1
}

Offline

#11 2008-12-20 17:18:37

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

i will try to compille it now but thanks for the effort now looking back at i see where it does remove the library. i wonder why someone would put that in the pkglist. very important library


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#12 2008-12-20 23:26:13

okplayer02
Member
From: Denver, Colorado
Registered: 2008-11-24
Posts: 84

Re: error when building gyachi [finally SOLVED]

everything complied good and it is  running well.

just a bit of advice to newbies esp coming from rpm based distro like Fedora u really have to do a little trial and error and watch ur whitespaces in the pkgbuild
i had to find out the hard way

thanks

Last edited by okplayer02 (2008-12-21 00:44:31)


Say what is good or keep silent  --Prophet Muhammad (SAW)

Offline

#13 2011-06-03 03:26:26

foss.linux
Member
Registered: 2010-07-20
Posts: 31
Website

Re: error when building gyachi [finally SOLVED]

[solved]

Last edited by foss.linux (2011-06-03 03:46:48)


OS : Archlinux i686 » Kernel : 2.6.37-ARCH

Offline

Board footer

Powered by FluxBB