LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 03-23-2010, 11:38 PM   #1
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Rep: Reputation: 16
configure: error: Package requirements


checking for LIBWNCK... configure: error: Package requirements (gtk+-2.0 >= 2.16.0 glib-2.0 >= 2.16.0 gobject-2.0 >= 2.13.0 libstartup-notification-1.0 xres) were not met:

Requested 'gtk+-2.0 >= 2.16.0' but version of GTK+ is 2.14.7

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBWNCK_CFLAGS
and LIBWNCK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

bash-3.1#

I don't understand why I am getting this error when im trying to install libwnck I have all the required packages installed but keep getting this error message. anyone have any ideas on what Im doing wrong?
 
Old 03-23-2010, 11:56 PM   #2
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
Quote:
Originally Posted by Sargalus View Post
checking for LIBWNCK... configure: error: Package requirements (gtk+-2.0 >= 2.16.0 glib-2.0 >= 2.16.0 gobject-2.0 >= 2.13.0 libstartup-notification-1.0 xres) were not met:

Requested 'gtk+-2.0 >= 2.16.0' but version of GTK+ is 2.14.7

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables LIBWNCK_CFLAGS
and LIBWNCK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.

bash-3.1#

I don't understand why I am getting this error when im trying to install libwnck I have all the required packages installed but keep getting this error message. anyone have any ideas on what Im doing wrong?

This error gtk+-2.0 >= 2.16.0' but version of GTK+ is 2.14.7 shows that you need the Gtk+ 2.16.0, you need to install that first.
 
Old 03-24-2010, 12:06 AM   #3
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
aahh so I need to download gtk+2.16 and get that installed first?

off topic question
when I try to install libdesktop-agnostic by running the following command

Code:
./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
I get the following

Code:
Configuring libdesktop-agnostic 0.0.1-bzr383-trunk
Checking for program gcc                 : ok /usr/bin/gcc 
Checking for program cpp                 : ok /usr/bin/cpp 
Checking for program ar                  : ok /usr/bin/ar 
Checking for program ranlib              : ok /usr/bin/ranlib 
Checking for gcc                         : ok  
Checking for program valac               : ok /usr/bin/valac 
Checking for gthread-2.0                 : ok 
Checking for program version valac >= 0.1.6 : ok 0.7.10 
Checking for program python                 : ok /usr/bin/python 
Checking for gmodule-2.0 >= 2.6.0           : ok 
Checking for glib-2.0 >= 2.10.0             : ok 
Checking for gobject-2.0 >= 2.12.0          : ok 
Checking for library m                      : ok 
Checking for gdk-2.0 >= 2.12.0              : ok 
Checking for gtk+-2.0 >= 2.12.0             : ok 
Checking for glib-2.0 >= 2.14.0             : ok 
Checking for gconf-2.0                      : not found 
 error: the configuration failed (see '/root/libdesktop-agnostic/build/config.log')
I have double checked and I have gconf installed I have gconfig-2.6*.txz installed and I have no clue why Im getting this error message it's not making sense.
 
Old 03-24-2010, 12:11 AM   #4
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
Yes you need to install gtk+ 2.16 first.
Quote:
Originally Posted by Sargalus View Post
aahh so I need to download gtk+2.16 and get that installed first?

off topic question
when I try to install libdesktop-agnostic by running the following command

Code:
./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
I get the following

Code:
Configuring libdesktop-agnostic 0.0.1-bzr383-trunk
Checking for program gcc                 : ok /usr/bin/gcc 
Checking for program cpp                 : ok /usr/bin/cpp 
Checking for program ar                  : ok /usr/bin/ar 
Checking for program ranlib              : ok /usr/bin/ranlib 
Checking for gcc                         : ok  
Checking for program valac               : ok /usr/bin/valac 
Checking for gthread-2.0                 : ok 
Checking for program version valac >= 0.1.6 : ok 0.7.10 
Checking for program python                 : ok /usr/bin/python 
Checking for gmodule-2.0 >= 2.6.0           : ok 
Checking for glib-2.0 >= 2.10.0             : ok 
Checking for gobject-2.0 >= 2.12.0          : ok 
Checking for library m                      : ok 
Checking for gdk-2.0 >= 2.12.0              : ok 
Checking for gtk+-2.0 >= 2.12.0             : ok 
Checking for glib-2.0 >= 2.14.0             : ok 
Checking for gconf-2.0                      : not found 
 error: the configuration failed (see '/root/libdesktop-agnostic/build/config.log')
I have double checked and I have gconf installed I have gconfig-2.6*.txz installed and I have no clue why Im getting this error message it's not making sense.
i can see from the code above it is searching for gconf-2.0 not gconfig-2.0 , why don't you check this file: /root/libdesktop-agnostic/build/config.log for error logs.

Last edited by Sayan Acharjee; 03-24-2010 at 12:12 AM.
 
Old 03-24-2010, 12:14 AM   #5
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
yeah I gconfig-2.0 is a typo this is the exact package I have installed gconf-2.26.2-i486-3as.txz

I have looked in the config log but im not that experienced on what exactly I should be looking for, below I posted the config.log

Code:
# project libdesktop-agnostic (0.0.1-bzr383-trunk) configured on Tue Mar 23 21:59:42 2010 by
# waf 1.5.8 (abi 7, python 20602f0 on linux2)
# using ./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
#
Checking for program gcc

find program='gcc' paths=[] var='CC' -> '/usr/bin/gcc'

Checking for program cpp

find program='cpp' paths=[] var='CPP' -> '/usr/bin/cpp'

Checking for program ar

find program='ar' paths=[] var='AR' -> '/usr/bin/ar'

Checking for program ranlib

find program='ranlib' paths=[] var='RANLIB' -> '/usr/bin/ranlib'

Checking for gcc 

Checking for program valac

find program='valac' paths=[] var='VALAC' -> '/usr/bin/valac'

Checking for gthread-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gthread-2.0
Checking for program version valac >= 0.1.6

Checking for program python

find program='python' paths=[] var='PYTHON' -> '/usr/bin/python'

Checking for gmodule-2.0 >= 2.6.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.6.0 gmodule-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gmodule-2.0
Checking for glib-2.0 >= 2.10.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.10.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gobject-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gobject-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gobject-2.0
Checking for library m

==>

int main() {
	return 0;
}

<==
[1/2] cc: build/.conf_check_0/test.c -> build/.conf_check_0/testbuild/default/test_1.o
['/usr/bin/gcc', '../test.c', '-c', '-o', 'default/test_1.o']
[2/2] cc_link: build/.conf_check_0/testbuild/default/test_1.o -> build/.conf_check_0/testbuild/default/testprog
['/usr/bin/gcc', 'default/test_1.o', '-o', 'default/testprog', '-Wl,-Bdynamic', '-lm']
Checking for gdk-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gdk-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gdk-2.0
Checking for gtk+-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gtk+-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gtk+-2.0
Checking for glib-2.0 >= 2.14.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.14.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gconf-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gconf-2.0
 
Old 03-24-2010, 12:20 AM   #6
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
Quote:
Originally Posted by Sargalus View Post
yeah I gconfig-2.0 is a typo this is the exact package I have installed gconf-2.26.2-i486-3as.txz

I have looked in the config log but im not that experienced on what exactly I should be looking for, below I posted the config.log

Code:
# project libdesktop-agnostic (0.0.1-bzr383-trunk) configured on Tue Mar 23 21:59:42 2010 by
# waf 1.5.8 (abi 7, python 20602f0 on linux2)
# using ./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
#
Checking for program gcc

find program='gcc' paths=[] var='CC' -> '/usr/bin/gcc'

Checking for program cpp

find program='cpp' paths=[] var='CPP' -> '/usr/bin/cpp'

Checking for program ar

find program='ar' paths=[] var='AR' -> '/usr/bin/ar'

Checking for program ranlib

find program='ranlib' paths=[] var='RANLIB' -> '/usr/bin/ranlib'

Checking for gcc 

Checking for program valac

find program='valac' paths=[] var='VALAC' -> '/usr/bin/valac'

Checking for gthread-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gthread-2.0
Checking for program version valac >= 0.1.6

Checking for program python

find program='python' paths=[] var='PYTHON' -> '/usr/bin/python'

Checking for gmodule-2.0 >= 2.6.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.6.0 gmodule-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gmodule-2.0
Checking for glib-2.0 >= 2.10.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.10.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gobject-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gobject-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gobject-2.0
Checking for library m

==>

int main() {
	return 0;
}

<==
[1/2] cc: build/.conf_check_0/test.c -> build/.conf_check_0/testbuild/default/test_1.o
['/usr/bin/gcc', '../test.c', '-c', '-o', 'default/test_1.o']
[2/2] cc_link: build/.conf_check_0/testbuild/default/test_1.o -> build/.conf_check_0/testbuild/default/testprog
['/usr/bin/gcc', 'default/test_1.o', '-o', 'default/testprog', '-Wl,-Bdynamic', '-lm']
Checking for gdk-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gdk-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gdk-2.0
Checking for gtk+-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gtk+-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gtk+-2.0
Checking for glib-2.0 >= 2.14.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.14.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gconf-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gconf-2.0
You need to install updated versions of glib. gmodule, gobject and gconfig.
 
Old 03-24-2010, 12:24 AM   #7
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by sayan_acharjee View Post
You need to install updated versions of glib. gmodule, gobject and gconfig.
cool, thanks bro, Im going to work on that now, I would update the whole system to slackware-current, but when I do that, it messes up my whole system and when it boots up, it boots up about half then monitor flashes and then blacks out, no idea why, and I can't get back into it and have to reinstall all over, it's like there's a package in slackware-current that crashes my resolution or something, but glib, gmodule, and all that junk should be in the slackware/l of slackware-current correct?
 
Old 03-24-2010, 12:28 AM   #8
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
It was my pleasure.
Yes, you should get the updated versions of these packages in current slackware, which is 13, I guess.
P.S. Never tried slackware, but I'm on my way to give it a try
 
Old 03-24-2010, 12:34 AM   #9
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by sayan_acharjee View Post
It was my pleasure.
Yes, you should get the updated versions of these packages in current slackware, which is 13, I guess.
P.S. Never tried slackware, but I'm on my way to give it a try
I love it, IMO it's the most stable distro, you just run into the issues Im having, 13 is the latest stable release which doesn't have the updated versions I need, the ones I need I believe are in the slackware-current which have been updated since 13 was released.
 
Old 03-24-2010, 12:37 AM   #10
Sayan Acharjee
Member
 
Registered: Feb 2010
Location: Chennai, India
Distribution: Manjaro
Posts: 624

Rep: Reputation: 64
Quote:
Originally Posted by Sargalus View Post
I love it, IMO it's the most stable distro, you just run into the issues Im having, 13 is the latest stable release which doesn't have the updated versions I need, the ones I need I believe are in the slackware-current which have been updated since 13 was released.
Thanks for the info.
 
Old 03-24-2010, 01:03 AM   #11
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
Ok I just updated all the files and everything installed just fine expect of course libdesktop-agnostic

it's not reconizing all the new updates of glib and all that good stuff, because it's still thinks the old ones are installed, below is a post of what the out come is and the log file

Code:
bash-3.1# ./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
Configuring libdesktop-agnostic 0.0.1-bzr383-trunk
Checking for program gcc                 : ok /usr/bin/gcc 
Checking for program cpp                 : ok /usr/bin/cpp 
Checking for program ar                  : ok /usr/bin/ar 
Checking for program ranlib              : ok /usr/bin/ranlib 
Checking for gcc                         : ok  
Checking for program valac               : ok /usr/bin/valac 
Checking for gthread-2.0                 : ok 
Checking for program version valac >= 0.1.6 : ok 0.7.10 
Checking for program python                 : ok /usr/bin/python 
Checking for gmodule-2.0 >= 2.6.0           : ok 
Checking for glib-2.0 >= 2.10.0             : ok 
Checking for gobject-2.0 >= 2.12.0          : ok 
Checking for library m                      : ok 
Checking for gdk-2.0 >= 2.12.0              : ok 
Checking for gtk+-2.0 >= 2.12.0             : ok 
Checking for glib-2.0 >= 2.14.0             : ok 
Checking for gconf-2.0                      : not found 
 error: the configuration failed (see '/root/libdesktop-agnostic/build/config.log')
bash-3.1#
Log file
Code:
bash-3.1# cat build/config.log 
# project libdesktop-agnostic (0.0.1-bzr383-trunk) configured on Tue Mar 23 23:00:21 2010 by
# waf 1.5.8 (abi 7, python 20602f0 on linux2)
# using ./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib
#
Checking for program gcc

find program='gcc' paths=[] var='CC' -> '/usr/bin/gcc'

Checking for program cpp

find program='cpp' paths=[] var='CPP' -> '/usr/bin/cpp'

Checking for program ar

find program='ar' paths=[] var='AR' -> '/usr/bin/ar'

Checking for program ranlib

find program='ranlib' paths=[] var='RANLIB' -> '/usr/bin/ranlib'

Checking for gcc 

Checking for program valac

find program='valac' paths=[] var='VALAC' -> '/usr/bin/valac'

Checking for gthread-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gthread-2.0
Checking for program version valac >= 0.1.6

Checking for program python

find program='python' paths=[] var='PYTHON' -> '/usr/bin/python'

Checking for gmodule-2.0 >= 2.6.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.6.0 gmodule-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gmodule-2.0
Checking for glib-2.0 >= 2.10.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.10.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gobject-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gobject-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gobject-2.0
Checking for library m

==>

int main() {
	return 0;
}

<==
[1/2] cc: build/.conf_check_0/test.c -> build/.conf_check_0/testbuild/default/test_1.o
['/usr/bin/gcc', '../test.c', '-c', '-o', 'default/test_1.o']
[2/2] cc_link: build/.conf_check_0/testbuild/default/test_1.o -> build/.conf_check_0/testbuild/default/testprog
['/usr/bin/gcc', 'default/test_1.o', '-o', 'default/testprog', '-Wl,-Bdynamic', '-lm']
Checking for gdk-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gdk-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gdk-2.0
Checking for gtk+-2.0 >= 2.12.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.12.0 gtk+-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs gtk+-2.0
Checking for glib-2.0 >= 2.14.0

pkg-config --errors-to-stdout --print-errors --atleast-version=2.14.0 glib-2.0
pkg-config --errors-to-stdout --print-errors --cflags --libs glib-2.0
Checking for gconf-2.0

pkg-config --errors-to-stdout --print-errors --cflags --libs gconf-2.0
bash-3.1#
so once again, no clue wtf is going on and why it's not detecting the updated packages.
 
Old 03-24-2010, 07:32 AM   #12
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,513

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
Ref. your other thread
http://www.linuxquestions.org/questi...on-xdg-797210/
No need to start a new thread with the same subject.

So you do have Slackware 13. Please always describe OS in post # 1.
Then libwnck-2.22.3 is the choice. No need to change glib, etc.
http://ftp.acc.umu.se/pub/gnome/sources/libwnck/2.22/
# src2pkg libwnck-2.22.3.tar.bz2 >> libwnck-2.22.3-i486-1.tgz

gobject-introspection-0.6.9-i486-1.tgz : also created with src2pkg .

'bzr' >> bazaar-1.18-x86-1ng.txz, slacky.eu, can be used instead of the bzr package.
libgtop-2.28.0-i486-1mch.txz , slacky.eu.
vala : vala-0.7.8-2pclos2010.i586.rpm , libvala0-0.7.8-2pclos2010.i586.rpm
rpm2tgz <package.rpm> , to get :
vala-0.7.8-2pclos2010.i586.tgz , libvala0-0.7.8-2pclos2010.i586.tgz
( None of the Slackware vala packages worked.)
http://spout.ussg.indiana.edu/linux/...s2010.i586.rpm
http://spout.ussg.indiana.edu/linux/...s2010.i586.rpm
.....
Code:
ls -tl /var/log/packages/ | head -10
-rw-r--r-- 1 root root    2874 2010-03-24 12:44 avant-window-navigator-0.4.0.rc1-i486-1
-rw-r--r-- 1 root root   12208 2010-03-24 12:21 libwnck-2.22.3-i486-1
-rw-r--r-- 1 root root    6364 2010-03-24 12:12 gobject-introspection-0.6.9-i486-1
-rw-r--r-- 1 root root     300 2010-03-24 11:45 libvala0-0.7.8-2pclos2010.i586
-rw-r--r-- 1 root root    7412 2010-03-24 11:41 vala-0.7.8-2pclos2010.i586
-rw-r--r-- 1 root root   11161 2010-03-24 11:32 gconf-2.26.2-i486-3as
-rw-r--r-- 1 root root    1793 2010-03-24 11:24 src2pkg-helpers-1.0-i486-1
-rw-r--r-- 1 root root    9451 2010-03-24 11:19 src2pkg-2.1-noarch-7
-rw-r--r-- 1 root root  114623 2010-03-24 11:09 bzr-2.0.3-i486-1_SBo
-rw-r--r-- 1 root root   13691 2010-03-24 11:01 libgtop-2.28.0-i486-1mch
( src2pkg was updated.)
.....

Last edited by knudfl; 03-24-2010 at 07:51 AM.
 
Old 03-24-2010, 10:48 AM   #13
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
I got all those above packages installed either via packages already made or just from source, the issue is coming from libdesktop-agnostic when Im running the following command.

./waf configure --prefix=/usr --config-backends=gconf --vfs-backends=gio --desktop-entry-backends=glib

but I was a dummy and upgraded everything to slackware-current forgetting that it screws up my display causing me to reinstall so now I get to redo everything.
 
Old 03-24-2010, 12:16 PM   #14
Sargalus
Member
 
Registered: Feb 2010
Location: Arizona
Distribution: Slackware 13.0
Posts: 106

Original Poster
Rep: Reputation: 16
Quote:
Originally Posted by knudfl View Post
Ref. your other thread
http://www.linuxquestions.org/questi...on-xdg-797210/
No need to start a new thread with the same subject.

So you do have Slackware 13. Please always describe OS in post # 1.
Then libwnck-2.22.3 is the choice. No need to change glib, etc.
http://ftp.acc.umu.se/pub/gnome/sources/libwnck/2.22/
# src2pkg libwnck-2.22.3.tar.bz2 >> libwnck-2.22.3-i486-1.tgz

gobject-introspection-0.6.9-i486-1.tgz : also created with src2pkg .

'bzr' >> bazaar-1.18-x86-1ng.txz, slacky.eu, can be used instead of the bzr package.
libgtop-2.28.0-i486-1mch.txz , slacky.eu.
vala : vala-0.7.8-2pclos2010.i586.rpm , libvala0-0.7.8-2pclos2010.i586.rpm
rpm2tgz <package.rpm> , to get :
vala-0.7.8-2pclos2010.i586.tgz , libvala0-0.7.8-2pclos2010.i586.tgz
( None of the Slackware vala packages worked.)
http://spout.ussg.indiana.edu/linux/...s2010.i586.rpm
http://spout.ussg.indiana.edu/linux/...s2010.i586.rpm
.....
Code:
ls -tl /var/log/packages/ | head -10
-rw-r--r-- 1 root root    2874 2010-03-24 12:44 avant-window-navigator-0.4.0.rc1-i486-1
-rw-r--r-- 1 root root   12208 2010-03-24 12:21 libwnck-2.22.3-i486-1
-rw-r--r-- 1 root root    6364 2010-03-24 12:12 gobject-introspection-0.6.9-i486-1
-rw-r--r-- 1 root root     300 2010-03-24 11:45 libvala0-0.7.8-2pclos2010.i586
-rw-r--r-- 1 root root    7412 2010-03-24 11:41 vala-0.7.8-2pclos2010.i586
-rw-r--r-- 1 root root   11161 2010-03-24 11:32 gconf-2.26.2-i486-3as
-rw-r--r-- 1 root root    1793 2010-03-24 11:24 src2pkg-helpers-1.0-i486-1
-rw-r--r-- 1 root root    9451 2010-03-24 11:19 src2pkg-2.1-noarch-7
-rw-r--r-- 1 root root  114623 2010-03-24 11:09 bzr-2.0.3-i486-1_SBo
-rw-r--r-- 1 root root   13691 2010-03-24 11:01 libgtop-2.28.0-i486-1mch
( src2pkg was updated.)
.....
Ok I just followed your instructions from this post and after I did the src2pkg and rpm2tgz and went to install the new *tgz packages I get the following

Code:
bash-3.1# installpkg gobject-introspection-0.6.9-i486-1.tgz 
Verifying package gobject-introspection-0.6.9-i486-1.tgz.

gzip: stdin: not in gzip format
Installing package gobject-introspection-0.6.9-i486-1.tgz:
PACKAGE DESCRIPTION:
WARNING:  Package has not been created with 'makepkg'
Package gobject-introspection-0.6.9-i486-1.tgz installed.

bash-3.1#
is the WARNING: Package has not been created with 'makepkg' something to worry about or can it be ignored?
 
Old 03-24-2010, 01:37 PM   #15
knudfl
LQ 5k Club
 
Registered: Jan 2008
Location: Copenhagen DK
Distribution: PCLinuxOS2023 Fedora38 + 50+ other Linux OS, for test only.
Posts: 17,513

Rep: Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641Reputation: 3641
A warning is not an error, is usually information only.

Reason for for the warning : probably a minor change in the
pkgtool scripts, or in src2pkg, may be an insignificant bug.
I saw no warnings in Slackware 13.

.....

Last edited by knudfl; 03-24-2010 at 01:41 PM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
GQ LDAP client - Package requirements error fortez Linux - Software 2 11-14-2009 11:13 AM
Synaptic Package Manager Error: 'dpkg --configure -a' cerc Linux - Software 4 10-10-2007 06:22 PM
package source configure error keratos Ubuntu 6 05-16-2007 09:03 AM
configure: error: Library requirements (gtk+-2.0 >= 2.0.5) not met; cottonfever Linux - Newbie 2 08-18-2006 04:18 PM
firefox configure error : No package 'xft' found logicalfuzz Linux - Software 2 09-30-2005 05:38 AM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 01:39 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration