Gentoo Forums
Gentoo Forums
Gentoo Forums
Quick Search: in
What package am I missing?
View unanswered posts
View posts from last 24 hours

 
Reply to topic    Gentoo Forums Forum Index Portage & Programming
View previous topic :: View next topic  
Author Message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3610

PostPosted: Sun Aug 24, 2014 11:00 pm    Post subject: What package am I missing? Reply with quote

Hi, ALL,
I'm trying to set up my Gentoo box for the python project I'm working on.
Unfortunately as usual, the instruction given are for Ubuntu/Debian only. ;-)

So, here is what they say.

1. Make sure you have necessary tools (for Ubuntu):
a. build-essentials (this is gcc, which is installed already)
b. autotools-dev (this is autotools, which is installed by default)
c. python-dev (this is python-2.7, which is also present with the system)
d. debhelper (have no idea what this is)
e. fakeroot (presumably not required on Gentoo, I'm guessing it's used to install something on the system)
f. quilt (this can be found in portage)
g. git (this can be found in portage)
h. mercurial (this can be found in portage)
i. python-dateutil (this can be found in portage)
j. python-setuptools (this is setuptools in portage)
k. libtool (this comes with the system)
l. automake (this comes with the system)

Some dependencies will required libfuse-dev, which I think is just "fuse". Am I right?

Now, some dependencies can be installed by python, other needs to be compiled by gcc.

Unfortunately, trying to configure and then build one of the gcc packages failed.

Here is the error message:

Code:

In file included from ../../libcerror/libcerror_error.h:31:0,
                 from ../../libcerror/libcerror_error.c:35:
../../libcerror/libcerror_libcstring.h:31:36: fatal error: libcstring_definitions.h: No such file or directory
compilation terminated.
make[1]: *** [libcerror_error.lo] Error 1
make[1]: Leaving directory `/home/igor/plaso-build/libbde-20140731/build/libcerror'
make: *** [all-recursive] Error 1


What package do I need to fix the error?

Thank you.
Back to top
View user's profile Send private message
mackal
Tux's lil' helper
Tux's lil' helper


Joined: 04 Aug 2011
Posts: 92

PostPosted: Mon Aug 25, 2014 12:32 am    Post subject: Reply with quote

google turns up libewf?
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3610

PostPosted: Mon Aug 25, 2014 5:58 am    Post subject: Reply with quote

Hi,
No, this is wrong.

Code:

Making all in include
make[1]: Entering directory `/home/igor/plaso-build/libewf-20140608/build/include'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/igor/plaso-build/libewf-20140608/build/include'
Making all in common
make[1]: Entering directory `/home/igor/plaso-build/libewf-20140608/build/common'
make  all-am
make[2]: Entering directory `/home/igor/plaso-build/libewf-20140608/build/common'
make[2]: Leaving directory `/home/igor/plaso-build/libewf-20140608/build/common'
make[1]: Leaving directory `/home/igor/plaso-build/libewf-20140608/build/common'
Making all in libcstring
make[1]: Entering directory `/home/igor/plaso-build/libewf-20140608/build/libcstring'
/bin/sh ../libtool --tag=CC   --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcstring -I../common  -I../../include -I../../common   -g -O2 -Wall -c -o libcstring_support.lo ../../libcstring/libcstring_support.c
libtool: compile:  x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcstring -I../common -I../../include -I../../common -g -O2 -Wall -c ../../libcstring/libcstring_support.c  -fPIC -DPIC -o .libs/libcstring_support.o
/bin/sh ../libtool --tag=CC   --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcstring -I../common  -I../../include -I../../common   -g -O2 -Wall -c -o libcstring_wide_string.lo ../../libcstring/libcstring_wide_string.c
libtool: compile:  x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcstring -I../common -I../../include -I../../common -g -O2 -Wall -c ../../libcstring/libcstring_wide_string.c  -fPIC -DPIC -o .libs/libcstring_wide_string.o
/bin/sh ../libtool --tag=CC   --mode=link x86_64-pc-linux-gnu-gcc  -g -O2 -Wall   -o libcstring.la  libcstring_support.lo libcstring_wide_string.lo  -lbz2
libtool: link: x86_64-pc-linux-gnu-ar cru .libs/libcstring.a .libs/libcstring_support.o .libs/libcstring_wide_string.o
libtool: link: x86_64-pc-linux-gnu-ranlib .libs/libcstring.a
libtool: link: ( cd ".libs" && rm -f "libcstring.la" && ln -s "../libcstring.la" "libcstring.la" )
make[1]: Leaving directory `/home/igor/plaso-build/libewf-20140608/build/libcstring'
Making all in libcerror
make[1]: Entering directory `/home/igor/plaso-build/libewf-20140608/build/libcerror'
/bin/sh ../libtool --tag=CC   --mode=compile x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcerror -I../common  -I../../include -I../../common -I../libcstring   -g -O2 -Wall -c -o libcerror_error.lo ../../libcerror/libcerror_error.c
libtool: compile:  x86_64-pc-linux-gnu-gcc -DHAVE_CONFIG_H -I. -I../../libcerror -I../common -I../../include -I../../common -I../libcstring -g -O2 -Wall -c ../../libcerror/libcerror_error.c  -fPIC -DPIC -o .libs/libcerror_error.o
In file included from ../../libcerror/libcerror_error.h:31:0,
                 from ../../libcerror/libcerror_error.c:35:
../../libcerror/libcerror_libcstring.h:31:36: fatal error: libcstring_definitions.h: No such file or directory
compilation terminated.
make[1]: *** [libcerror_error.lo] Error 1
make[1]: Leaving directory `/home/igor/plaso-build/libewf-20140608/build/libcerror'
make: *** [all-recursive] Error 1
igor@IgorDellGentoo ~/plaso-build/libewf-20140608/build $


Thank you.
Back to top
View user's profile Send private message
ONEEYEMAN
Advocate
Advocate


Joined: 01 Mar 2005
Posts: 3610

PostPosted: Thu Aug 28, 2014 3:46 am    Post subject: Reply with quote

The funny thing is I am able to compile the version in Portage, but I am not able to compile the latest and greatest version of this package, found at http://code.google.com/p/libewf.
It still gives me the same error.

Thank you.
Back to top
View user's profile Send private message
Display posts from previous:   
Reply to topic    Gentoo Forums Forum Index Portage & Programming All times are GMT
Page 1 of 1

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum