And invisible elements are exported in bitmaps.
Arrgh. That's a bug. Sorry. Of course a hidden object must not export. I will fix it now.
Now fixed in CVS. Hidden stuff is not exported or printed now. Please use the CVS version.
Thanks !!!
That fix was not in CVS early this morning (??) but now that's OK.
Gentoo users : Here is the customized inkscape-CVS ebuild I presently use to keep my gentoo up-to-date. This may be usefull for gentoo adicts that have problems with exporting invisible elements. Copy it to your portage overlay in media-gfx/inkscape and run ebuild digest on it before emerging. Have a look to portage docs for more help.
----cut-here--------------------------- # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # This is not the 1.0 version ! This is a cvs ebuild # By Dell'aiera Pol (id jabber: pol@...592...) # Just put this file in /usr/portage/media-gfx/inkscape/ then run 'emerge inkscape' # Report bug @ blenderman@...593... or via jabber.
ECVS_MODULE="inkscape" ECVS_CVS_OPTIONS="-dP" ECVS_SERVER="cvs.sourceforge.net/cvsroot/inkscape"
inherit cvs
USE="sdl jpeg png mozilla truetype static python"
S=${WORKDIR}/${ECVS_MODULE}
DESCRIPTION="A SVG based generic vector-drawing program" HOMEPAGE="http://www.inkscape.org/"
LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="x86 ~ppc ~amd64" IUSE="gnome mmx"
RDEPEND=">=x11-libs/gtk+-2.4.0 >=dev-cpp/gtkmm-2.4 >=media-libs/libart_lgpl-2.3.16 >=dev-libs/libxml2-2.6.4 virtual/xft media-libs/fontconfig dev-libs/boehm-gc dev-libs/popt sys-libs/zlib media-libs/libpng >=dev-libs/libsigc++-2.0.3 gnome? ( >=gnome-base/libgnomeprint-2.2 >=gnome-base/libgnomeprintui-2.2 )"
DEPEND="${RDEPEND} sys-devel/gettext dev-util/pkgconfig >=dev-util/intltool-0.29"
src_compile() { ln -s /usr/share/libtool/ltmain.sh ./ ./autogen.sh || die G2CONF="${G2CONF} --with-xft --with-popt" use mmx || G2CONF="${G2CONF} --disable-mmx" use gnome && G2CONF="${G2CONF} --with-gnome-print"
econf || die cp src/inkscape_version.h.mingw src/inkscape_version.h emake || die
}
src_install() { DOCS="AUTHORS COPYING ChangeLog HACKING NEWS README" make DESTDIR=${D} install || die } ----cut-here---------------------------