First Last Prev Next    No search results available      Search page      Enter new bug
Bug#: 140824
Alias:
Product:
Component:
Status: RESOLVED
Resolution: FIXED
Assigned To: media-video herd <media-video@gentoo.org>
Hardware:
OS:
Version:
Priority:
Severity:
Reporter: Ole Trenner <ogardiner.23444071@bloglines.com>
Add CC:
CC:
Remove selected CCs
URL:
Summary:
Status Whiteboard:
Keywords:

Filename Description Type Creator Created Size Actions
cinepaint-0.19.0.ebuild fixed ebuild text/plain Pascal BERTIN 2006-08-14 08:48 0000 1.01 KB Details
Create a New Attachment (proposed patch, testcase, etc.) View All

Bug 140824 depends on: Show dependency tree
Bug 140824 blocks:
Votes: 0    Show votes for this bug    Vote for this bug

Additional Comments: (this is where you put emerge --info)


Not eligible to see or edit group visibility for this bug.






View Bug Activity   |   Format For Printing   |   XML   |   Clone This Bug


Description:   Opened: 2006-07-17 13:32 0000
Attempting to emerge cinepaint fails with the following error message:

=== Message start ===

[several lines starting with QA Notice: ...]
QA Notice: //usr/share/man/man1/cinepainttool.1 installed in ${D}/${D}

!!! ERROR: media-video/cinepaint-0.19.0 failed.
Call stack:
  misc-functions.sh, line 409:   Called install_qa_check
  misc-functions.sh, line 182:   Called die

!!! Aborting due to QA concerns: 56 files installed in
/var/tmp/portage/cinepaint-0.19.0/image///var/tmp/portage/cinepaint-0.19.0/image/
!!! If you need support, post the topmost build error, and the call stack if
relevant.

!!! install_qa_check failed; exiting.

=== Message End ===

The QA message suggests a sandbox violation, but I do not have the knowledge to
change Makefiles/whatever to try to fix this issue. 

Since cinepaint is more or less the only application in portage to handle
HDRI/32bit Image Files, help would be greatly appreciated.

FYI: emerge --info:

=== emerge --info start ===

Portage 2.1-r1 (default-linux/x86/2006.0, gcc-3.4.6, glibc-2.3.6-r4,
2.6.16-gentoo-r7 i686)
=================================================================
System uname: 2.6.16-gentoo-r7 i686 Intel(R) Pentium(R) 4 CPU 1.80GHz
Gentoo Base System version 1.6.15
app-admin/eselect-compiler: [Not Present]
dev-lang/python:     2.4.3-r1
dev-python/pycrypto: 2.0.1-r5
dev-util/ccache:     [Not Present]
dev-util/confcache:  [Not Present]
sys-apps/sandbox:    1.2.17
sys-devel/autoconf:  2.13, 2.59-r7
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2
sys-devel/binutils:  2.16.1-r3
sys-devel/gcc-config: 1.3.13-r3
sys-devel/libtool:   1.5.22
virtual/os-headers:  2.6.11-r2
ACCEPT_KEYWORDS="x86"
AUTOCLEAN="yes"
CBUILD="i686-pc-linux-gnu"
CFLAGS="-O3 -march=i686 -pipe"
CHOST="i686-pc-linux-gnu"
CONFIG_PROTECT="/etc /usr/share/X11/xkb"
CONFIG_PROTECT_MASK="/etc/env.d /etc/env.d/java/ /etc/gconf
/etc/java-config/vms/ /etc/revdep-rebuild /etc/terminfo"
CXXFLAGS="-O3 -march=i686 -pipe"
DISTDIR="/usr/portage/distfiles"
EMERGE_DEFAULT_OPTS="--alphabetical"
FEATURES="autoconfig distlocks fixpackages metadata-transfer sandbox sfperms
strict"
GENTOO_MIRRORS="ftp://ftp.tu-clausthal.de/pub/linux/gentoo/ 
ftp://ftp.uni-erlangen.de/pub/mirrors/gentoo
ftp://ftp.wh2.tu-dresden.de/pub/mirrors/gentoo "
LC_ALL="en_US.UTF-8"
MAKEOPTS="-j2"
PKGDIR="/usr/portage/packages"
PORTAGE_RSYNC_OPTS="--recursive --links --safe-links --perms --times --compress
--force --whole-file --delete --delete-after --stats --timeout=180
--exclude='/distfiles' --exclude='/local' --exclude='/packages'"
PORTAGE_TMPDIR="/var/tmp"
PORTDIR="/usr/portage"
PORTDIR_OVERLAY="/usr/local/portage /usr/portage/local/layman/sunrise
/usr/portage/local/layman/webapps-experimental"
SYNC="rsync://rsync.gentoo.org/gentoo-portage"
USE="x86 X alsa apache2 apm asf avi bash-completion berkdb bitmap-fonts bzip2
cli crypt curl dlloader dri dvd dvdread emboss encode esd foomaticdb fortran
gdbm gif gpm gstreamer gtk gtk2 imagemagick imlib ipv6 isdnlog java jpeg libg++
libwww motif mp3 mpeg multiuser ncurses nls nptl nsplugin ogg opengl pam pcre
pdflib perl png postgres pppd python qt qt3 qt4 quicktime readline reflection
samba session spell spl sqlite ssl svg tcpd tiff truetype truetype-fonts
type1-fonts udev unicode vorbis win32codecs xml xmms xorg xv zlib elibc_glibc
input_devices_keyboard input_devices_mouse kernel_linux userland_GNU
video_cards_nv video_cards_nvidia video_cards_vesa video_cards_fbdev"
Unset:  CTARGET, INSTALL_MASK, LANG, LDFLAGS, LINGUAS, PORTAGE_RSYNC_EXTRA_OPTS

=== emerge --info end ===

------- Comment #1 From Pascal BERTIN 2006-08-14 08:48:46 0000 -------
Created an attachment (id=94242) [details]
fixed ebuild

try using this ebuild instead of the original one

------- Comment #2 From Ole Trenner 2006-08-14 12:21:03 0000 -------
Your attached ebuild works here for cinepaint 0.19.0.

Thanks a lot!

(for "emerge --info" see bug description)

------- Comment #3 From Cees Koolen 2006-08-21 07:56:20 0000 -------
Have got the same bug using the "stable" cinepaint 0.18.3 ebuild

------- Comment #4 From Pascal BERTIN 2006-08-21 08:00:03 0000 -------
(In reply to comment #3)
> Have got the same bug using the "stable" cinepaint 0.18.3 ebuild
> 

you can apply the same patch :
in the ebuild, replace 
einstall DESTDIR=${D} || die "einstall failed"
with 
make install DESTDIR=${D} || die "einstall failed"

------- Comment #5 From Cees Koolen 2006-08-22 00:37:13 0000 -------
Using the patch works for me.
Thanx!

------- Comment #6 From Jakub Moc (RETIRED) 2006-09-01 00:50:25 0000 -------
*** Bug 107272 has been marked as a duplicate of this bug. ***

------- Comment #7 From Alexis Ballier 2006-11-26 11:00:35 0000 -------
This version has been removed, 0.21.1 fixes this and has just been stablilised
on x86.

First Last Prev Next    No search results available      Search page      Enter new bug