Fedora Linux Support Community & Resources Center

Go Back   FedoraForum.org > Fedora 17/18 > Using Fedora
FedoraForum Search

Forgot Password? Join Us!

Using Fedora General support for current versions. Ask questions about Fedora and it's software that do not belong in any other forum.

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 8th May 2012, 05:54 PM
Shmaleb Offline
Registered User
 
Join Date: Feb 2012
Location: st albert alberta canada
Posts: 31
linuxchrome
Help compiling geary

I am trying to compile geary but I am getting errors of missing dependencies (that I have met) and could not create build directory. any Ideas. this thread here is the full terminal session

geary-0.1.0]# ./configure
cmake version 2.8.7
-- Icon cache will be updated
-- Desktop database will be updated
-- checking for a minimum Vala version of 0.16.0
-- found Vala, version 0.16.0
-- checking for modules 'gthread-2.0;glib-2.0>=2.30.0;gio-2.0>=2.28.0;gtk+-3.0>=3.2.0;gee-1.0>=0.6.0;unique-3.0>=3.0.0;sqlite3>=3.7.4;sqlheavy-0.1>=0.1.1;gmime-2.6>=2.6.0;gnome-keyring-1>=2.32.0;webkitgtk-3.0>=1.4.3'
-- package 'gtk+-3.0>=3.2.0' not found
-- package 'gee-1.0>=0.6.0' not found
-- package 'unique-3.0>=3.0.0' not found
-- package 'sqlheavy-0.1>=0.1.1' not found
-- package 'gmime-2.6>=2.6.0' not found
-- package 'gnome-keyring-1>=2.32.0' not found
-- package 'webkitgtk-3.0>=1.4.3' not found
CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:266 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake/Modules/FindPkgConfig.cmake:320 (_pkg_check_modules_internal)
src/CMakeLists.txt:216 (pkg_check_modules)


-- GSettings schemas will be compiled.
-- GSettings schemas will be compiled in-place.
-- GSettings schemas will be installed into /usr/share/glib-2.0/schemas/
-- Configuring incomplete, errors occurred!
Unable to prepare build directory.
Reply With Quote
  #2  
Old 9th May 2012, 06:01 PM
YeOK's Avatar
YeOK Offline
Registered User
 
Join Date: Apr 2006
Location: North West UK.
Age: 32
Posts: 510
linuxfedorachrome
Re: Help compiling geary

Quote:
Originally Posted by Shmaleb View Post
I am trying to compile geary but I am getting errors of missing dependencies (that I have met) and could not create build directory. any Ideas. this thread here is the full terminal session

geary-0.1.0]# ./configure
cmake version 2.8.7
-- Icon cache will be updated
-- Desktop database will be updated
-- checking for a minimum Vala version of 0.16.0
-- found Vala, version 0.16.0
-- checking for modules 'gthread-2.0;glib-2.0>=2.30.0;gio-2.0>=2.28.0;gtk+-3.0>=3.2.0;gee-1.0>=0.6.0;unique-3.0>=3.0.0;sqlite3>=3.7.4;sqlheavy-0.1>=0.1.1;gmime-2.6>=2.6.0;gnome-keyring-1>=2.32.0;webkitgtk-3.0>=1.4.3'
-- package 'gtk+-3.0>=3.2.0' not found
-- package 'gee-1.0>=0.6.0' not found
-- package 'unique-3.0>=3.0.0' not found
-- package 'sqlheavy-0.1>=0.1.1' not found
-- package 'gmime-2.6>=2.6.0' not found
-- package 'gnome-keyring-1>=2.32.0' not found
-- package 'webkitgtk-3.0>=1.4.3' not found
CMake Error at /usr/share/cmake/Modules/FindPkgConfig.cmake:266 (message):
A required package was not found
Call Stack (most recent call first):
/usr/share/cmake/Modules/FindPkgConfig.cmake:320 (_pkg_check_modules_internal)
src/CMakeLists.txt:216 (pkg_check_modules)


-- GSettings schemas will be compiled.
-- GSettings schemas will be compiled in-place.
-- GSettings schemas will be installed into /usr/share/glib-2.0/schemas/
-- Configuring incomplete, errors occurred!
Unable to prepare build directory.
You can try my source rpm for sqlheavy, though I will warn you now that I didn't put much effort into it, so it may be missing some requirements.

You need to rebuild it, first install the required tools,
Code:
sudo yum install rpmdevtools yum-utils
Setup rpm build dir.
Code:
rpmdev-setuptree
Download the source rpm: here

Then install the requirements for sqlheavy (I didn't check this part...)
Code:
sudo yum-builddep sqlheavy-0.1.1-1.fc16.src.rpm
Then you should be ready to build (requires vala 0.16....)
Code:
rpmbuild --rebuild sqlheavy-0.1.1-1.fc16.src.rpm
With luck, you should then have a few rpms in ~rpmbuild/RPM/[arch]/. Let me know if I'm missing any requirements. You also have to repeat the above steps with the fedora 17 version of gmime. You can get that from koji: http://kojipkgs.fedoraproject.org/pa...1.fc17.src.rpm.
__________________
He who asks a question is a fool for a minute; he who does not remains a fool forever.
Reply With Quote
  #3  
Old 9th May 2012, 06:41 PM
Shmaleb Offline
Registered User
 
Join Date: Feb 2012
Location: st albert alberta canada
Posts: 31
linuxchrome
Re: Help compiling geary

Damn getting these errors


RPM build errors:
user yeok does not exist - using root
group yeok does not exist - using root
user yeok does not exist - using root
group yeok does not exist - using root
File not found by glob: /home/Shmaleb/rpmbuild/BUILDROOT/sqlheavy-0.1.1-1.fc16.x86_64/usr/src/*

obviously the rpm was made specifically for your system but I have no dev skills so I cant find out what went wrong.

If you want to re-write it with my username in the place of yours it is "Shmaleb" without quotes

Last edited by Shmaleb; 9th May 2012 at 08:35 PM.
Reply With Quote
  #4  
Old 10th May 2012, 12:28 PM
george_toolan Online
Registered User
 
Join Date: Dec 2006
Posts: 1,755
linuxfirefox
Re: Help compiling geary

If you want to compile programs you'll have to install the devel packages and not just the normal packages.

Code:
yum install gtk+-devel unique-devel unique3-devel gmime-devel gnome-keyring-devel webkitgtk-devel webkitgtk3-devel
But apparently Fedora 16 only has gmime 2.5.8 which is less than 2.6.
Reply With Quote
  #5  
Old 10th May 2012, 08:13 PM
Shmaleb Offline
Registered User
 
Join Date: Feb 2012
Location: st albert alberta canada
Posts: 31
linuxchrome
Re: Help compiling geary

I guess I could wait for fedora 17 to come out, it's only like 12 days until then right.
Reply With Quote
  #6  
Old 10th May 2012, 08:28 PM
YeOK's Avatar
YeOK Offline
Registered User
 
Join Date: Apr 2006
Location: North West UK.
Age: 32
Posts: 510
linuxfedorachrome
Re: Help compiling geary

Quote:
Originally Posted by Shmaleb View Post
I guess I could wait for fedora 17 to come out, it's only like 12 days until then right.
You are better to wait, Geary is really early in development, it has few features.
__________________
He who asks a question is a fool for a minute; he who does not remains a fool forever.
Reply With Quote
  #7  
Old 10th May 2012, 08:45 PM
Shmaleb Offline
Registered User
 
Join Date: Feb 2012
Location: st albert alberta canada
Posts: 31
linuxchrome
Re: Help compiling geary

Quote:
Originally Posted by YeOK View Post
You are better to wait, Geary is really early in development, it has few features.
yeah I guess i'll stick to thunderbird for now f17 should have all the new packages and make compiling easier. But I really like all the elementary apps like Marlin Beatbox and geary.
Reply With Quote
  #8  
Old 11th May 2012, 05:43 PM
YeOK's Avatar
YeOK Offline
Registered User
 
Join Date: Apr 2006
Location: North West UK.
Age: 32
Posts: 510
linuxfedorachrome
Re: Help compiling geary

Quote:
Originally Posted by Shmaleb View Post
yeah I guess i'll stick to thunderbird for now f17 should have all the new packages and make compiling easier. But I really like all the elementary apps like Marlin Beatbox and geary.
I am looking forward to geary too, however it lacks some basic features for the moment. So like you, I'll stick with thunderbird and just keep checking on geary. I may attempt to make an rpm for it once Fedora 17 is out.
__________________
He who asks a question is a fool for a minute; he who does not remains a fool forever.
Reply With Quote
  #9  
Old 11th May 2012, 06:15 PM
Shmaleb Offline
Registered User
 
Join Date: Feb 2012
Location: st albert alberta canada
Posts: 31
linuxchrome
Re: Help compiling geary

Quote:
Originally Posted by YeOK View Post
I am looking forward to geary too, however it lacks some basic features for the moment. So like you, I'll stick with thunderbird and just keep checking on geary. I may attempt to make an rpm for it once Fedora 17 is out.
you will build an RPM I can not begin to tell you how awesome I think you are. I'm only a little kid now but when I get older I'll be building packages too.
Reply With Quote
  #10  
Old 11th May 2012, 06:25 PM
Yellowman
Guest
 
Posts: n/a
linuxfirefox
Re: Help compiling geary

Quote:
Originally Posted by Shmaleb View Post
you will build an RPM I can not begin to tell you how awesome I think you are. I'm only a little kid now but when I get older I'll be building packages too.
Firewing1 was building packages for fedora and rpmfusion and also writing his own code at 15

http://forums.fedoraforum.org/member.php?u=12758
Reply With Quote
Reply

Tags
compiling, elementary, geary, sqlheavy, vala

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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 On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Compiling jmc302005 Fedora Focus 7 23rd October 2009 11:53 PM
Compiling a unique kernel vs. compiling a single module. jbkt23 Using Fedora 0 4th December 2006 12:11 AM
Compiling ns2 on FC4 sita Programming & Packaging 1 5th November 2005 09:53 AM


Current GMT-time: 12:40 (Wednesday, 19-06-2013)

TopSubscribe to XML RSS for all Threads in all ForumsFedoraForumDotOrg Archive
logo

All trademarks, and forum posts in this site are property of their respective owner(s).
FedoraForum.org is privately owned and is not directly sponsored by the Fedora Project or Red Hat, Inc.

Privacy Policy | Term of Use | Posting Guidelines | Archive | Contact Us | Founding Members

Powered by vBulletin® Copyright ©2000 - 2012, vBulletin Solutions, Inc.

FedoraForum is Powered by RedHat