diff options
author | Ctibor <ctibor.brancik@seznam.cz> | 2012-10-23 22:23:48 +0200 |
---|---|---|
committer | Ctibor <ctibor.brancik@seznam.cz> | 2012-10-23 22:23:48 +0200 |
commit | b3f80e0306587663a493502e4fcfa1c17c5836fd (patch) | |
tree | cbd97925b8af0d81f04fd8ee064e631ae70a788e /media-gfx/inkscape | |
download | brancik-overlay-b3f80e0306587663a493502e4fcfa1c17c5836fd.tar.gz brancik-overlay-b3f80e0306587663a493502e4fcfa1c17c5836fd.tar.bz2 |
Initial import of the local overlay.
Diffstat (limited to 'media-gfx/inkscape')
-rwxr-xr-x | media-gfx/inkscape/Manifest | 1 | ||||
-rwxr-xr-x | media-gfx/inkscape/inkscape-9999.ebuild | 93 |
2 files changed, 94 insertions, 0 deletions
diff --git a/media-gfx/inkscape/Manifest b/media-gfx/inkscape/Manifest new file mode 100755 index 0000000..d3d7887 --- /dev/null +++ b/media-gfx/inkscape/Manifest @@ -0,0 +1 @@ +EBUILD inkscape-9999.ebuild 2189 RMD160 06e16ea7c649860bff394c63328391d443b06241 SHA1 724bd5f85325aa6e5780fafd7e2ecfc639a30887 SHA256 159a9043a547db16fd4e6780b40edf17e064057f133d2dbd538b5d7914bc0436 diff --git a/media-gfx/inkscape/inkscape-9999.ebuild b/media-gfx/inkscape/inkscape-9999.ebuild new file mode 100755 index 0000000..4003acf --- /dev/null +++ b/media-gfx/inkscape/inkscape-9999.ebuild @@ -0,0 +1,93 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: + +EAPI=4 +inherit bzr gnome2 eutils autotools flag-o-matic + +SRC_URI="" +EBZR_REPO_URI="https://code.launchpad.net/inkscape" +EBZR_PROJECT="${PN}" + +DESCRIPTION="A SVG based generic vector-drawing program" +HOMEPAGE="http://www.inkscape.org/" + +SLOT="0" +LICENSE="GPL-2 LGPL-2.1" +KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86" +IUSE="dia gnome inkjar lcms mmx nls postscript spell wmf wpg" +RESTRICT="test" + +COMMON_DEPEND=" + dev-cpp/glibmm + >=dev-cpp/gtkmm-2.10.0 + >=dev-libs/boehm-gc-6.4 + >=dev-libs/glib-2.6.5 + >=dev-libs/libsigc++-2.0.12 + >=dev-libs/libxml2-2.6.20 + >=dev-libs/libxslt-1.0.15 + dev-libs/popt + dev-python/lxml + dev-python/pyxml + media-gfx/imagemagick + media-libs/fontconfig + >=media-libs/freetype-2 + >=media-libs/libpng-1.2 + sci-libs/gsl + x11-libs/libXft + >=x11-libs/gtk+-2.10.7 + >=x11-libs/pango-1.4.0 + gnome? ( >=gnome-base/gnome-vfs-2.0 ) + lcms? ( >=media-libs/lcms-1.14 ) + spell? ( + app-text/aspell + app-text/gtkspell + ) + wpg? ( >=media-libs/libwpg-0.1 )" + +# These only use executables provided by these packages +# See share/extensions for more details. inkscape can tell you to +# install these so we could of course just not depend on those and rely +# on that. +RDEPEND=" + ${COMMON_DEPEND} + dev-python/numpy + dia? ( app-office/dia ) + postscript? ( >=media-gfx/pstoedit-3.44[plotutils] media-gfx/skencil ) + wmf? ( media-libs/libwmf )" + +DEPEND="${COMMON_DEPEND} + dev-libs/boost + sys-devel/gettext + dev-util/pkgconfig + x11-libs/libX11 + >=dev-util/intltool-0.29" + +src_unpack() { + bzr_src_unpack +} + +pkg_setup() { + G2CONF="${G2CONF} --without-perl" + G2CONF="${G2CONF} --enable-poppler-cairo" + G2CONF="${G2CONF} --with-xft" + G2CONF="${G2CONF} $(use_with gnome gnome-vfs)" + G2CONF="${G2CONF} $(use_with inkjar)" + G2CONF="${G2CONF} $(use_enable lcms)" + G2CONF="${G2CONF} $(use_enable mmx)" + G2CONF="${G2CONF} $(use_enable nls)" + DOCS="AUTHORS ChangeLog NEWS README*" +} + +src_prepare() { + gnome2_src_prepare + eautoreconf + sh autogen.sh || die +} + +src_configure() { + # aliasing unsafe wrt #310393 + append-flags -fno-strict-aliasing + gnome2_src_configure +} + |