diff options
author | 2005-05-24 21:23:59 +0000 | |
---|---|---|
committer | 2005-05-24 21:23:59 +0000 | |
commit | 2b844eee9a8707f5961c3ca0c707c22e22e87b47 (patch) | |
tree | a15d907771addeb1b4d281e4bbcd2b29674f20ff | |
parent | fixed multilib issue (diff) | |
download | historical-2b844eee9a8707f5961c3ca0c707c22e22e87b47.tar.gz historical-2b844eee9a8707f5961c3ca0c707c22e22e87b47.tar.bz2 historical-2b844eee9a8707f5961c3ca0c707c22e22e87b47.zip |
Added configure.ac patch, should close bug #84323
Package-Manager: portage-2.0.51.22-r1
-rw-r--r-- | media-gfx/inkscape/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/inkscape/Manifest | 10 | ||||
-rw-r--r-- | media-gfx/inkscape/files/digest-inkscape-0.41-r1 | 1 | ||||
-rw-r--r-- | media-gfx/inkscape/files/inkscape-0.41-configure.ac.patch | 14 | ||||
-rw-r--r-- | media-gfx/inkscape/inkscape-0.41-r1.ebuild | 80 |
5 files changed, 109 insertions, 1 deletions
diff --git a/media-gfx/inkscape/ChangeLog b/media-gfx/inkscape/ChangeLog index 9223848e4187..f8701709b284 100644 --- a/media-gfx/inkscape/ChangeLog +++ b/media-gfx/inkscape/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/inkscape # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.19 2005/05/21 08:58:01 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.20 2005/05/24 21:23:59 zypher Exp $ + + 24 May 2005; Marc Hildebrand <zypher@gentoo.org> inkscape-0.41-r1.ebuild: + Added inkscape-0.41-configure.ac.patch, should close bug #84323 21 May 2005; Markus Rothe <corsair@gentoo.org> inkscape-0.41.ebuild: Added ~ppc64 to KEYWORDS diff --git a/media-gfx/inkscape/Manifest b/media-gfx/inkscape/Manifest index 345018e2c0ef..138392ac4c9f 100644 --- a/media-gfx/inkscape/Manifest +++ b/media-gfx/inkscape/Manifest @@ -1,3 +1,6 @@ +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + MD5 1b9cd1b4f6b5955dbfd427741488fee2 inkscape-0.39.ebuild 1129 MD5 341974a62a6b62a61c66a614f083789e inkscape-0.40-r1.ebuild 1256 MD5 18b0f9d5bd6770583de0254ea3bf3bdc inkscape-0.41-r1.ebuild 2285 @@ -20,3 +23,10 @@ MD5 8d23195ea09e60622c134e6d6af1b0a7 files/digest-inkscape-0.41 67 MD5 1fc3e80f4d06574fbcc24e8647d4cb96 files/digest-inkscape-0.40 66 MD5 4908ac96c1846e705c50d6b56f2cf30c files/digest-inkscape-0.39 66 MD5 1fc3e80f4d06574fbcc24e8647d4cb96 files/digest-inkscape-0.40-r1 66 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.4.1 (GNU/Linux) + +iD8DBQFCk5vQpNOQ4DjaQW0RArKqAJ9/1hVhFtrNikyWFpwDQhZXF1j8bgCdEIbj +hN9Y8ROm+3/HZrHKZ86e950= +=k8bh +-----END PGP SIGNATURE----- diff --git a/media-gfx/inkscape/files/digest-inkscape-0.41-r1 b/media-gfx/inkscape/files/digest-inkscape-0.41-r1 new file mode 100644 index 000000000000..558fa6e89f0c --- /dev/null +++ b/media-gfx/inkscape/files/digest-inkscape-0.41-r1 @@ -0,0 +1 @@ +MD5 9b4bbfaae688127dca4c3d816a42b21a inkscape-0.41.tar.bz2 4430290 diff --git a/media-gfx/inkscape/files/inkscape-0.41-configure.ac.patch b/media-gfx/inkscape/files/inkscape-0.41-configure.ac.patch new file mode 100644 index 000000000000..e456ed197b78 --- /dev/null +++ b/media-gfx/inkscape/files/inkscape-0.41-configure.ac.patch @@ -0,0 +1,14 @@ +--- configure.ac.orig 2005-03-06 19:44:10.242884936 +0100 ++++ configure.ac 2005-03-06 19:50:52.266768016 +0100 +@@ -207,8 +207,10 @@ + fi + AM_CONDITIONAL(INKJAR, test "$with_ij" = "yes") + ++AC_ARG_WITH(gtkspell, ++ AC_HELP_STRING([--with-gtkspell], [disable gtkspell support]),[with_gtkspell=$withval], [with_gtkspell=no]) + ink_spell_pkg= +-if pkg-config --exists gtkspell-2.0; then ++if [ "x$gtkspell"="xyes" ] ; then + ink_spell_pkg=gtkspell-2.0 + AC_DEFINE(WITH_GTKSPELL, 1, [enable gtk spelling widget]) + fi diff --git a/media-gfx/inkscape/inkscape-0.41-r1.ebuild b/media-gfx/inkscape/inkscape-0.41-r1.ebuild new file mode 100644 index 000000000000..2b88834d764a --- /dev/null +++ b/media-gfx/inkscape/inkscape-0.41-r1.ebuild @@ -0,0 +1,80 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.41-r1.ebuild,v 1.1 2005/05/24 21:23:59 zypher Exp $ + +inherit gnome2 eutils + +DESCRIPTION="A SVG based generic vector-drawing program" +HOMEPAGE="http://www.inkscape.org/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + +SLOT="0" +LICENSE="GPL-2 LGPL-2.1" +KEYWORDS="~x86 ~ppc ~amd64" +IUSE="gnome mmx perl python bonobo inkjar doc plugin spell" + +RDEPEND=">=x11-libs/gtk+-2.4.1 + >=media-libs/libart_lgpl-2.3.16 + >=dev-libs/libxml2-2.6.7 + >=x11-libs/pango-1.4.0 + >=dev-libs/libxslt-1.0.15 + dev-perl/XML-Parser + virtual/xft + dev-libs/popt + media-libs/fontconfig + sys-libs/zlib + media-libs/libpng + =sys-devel/gcc-3* + >=dev-libs/libsigc++-2.0.3 + >=dev-cpp/gtkmm-2.4 + dev-cpp/glibmm + gnome? ( >=gnome-base/libgnomeprint-2.2 + >=gnome-base/libgnomeprintui-2.2 ) + >=dev-libs/boehm-gc-6.4 + perl? ( dev-lang/perl ) + python? ( dev-lang/python ) + plugin? ( >=media-gfx/pstoedit-3.33 + >=media-gfx/skencil-0.6.16 + media-libs/libwmf + app-office/dia ) + spell? ( app-text/gtkspell )" + +DEPEND="${RDEPEND} + sys-devel/gettext + dev-util/pkgconfig + >=dev-util/intltool-0.29" + +G2CONF="${G2CONF} --with-xft" +G2CONF="${G2CONF} `use_with spell gtkspell`" +use mmx || G2CONF="${G2CONF} --disable-mmx" +use bonobo || G2CONF="${G2CONF} --without-bonobo" +use inkjar || G2CONF="${G2CONF} --without-inkjar" +use gnome && G2CONF="${G2CONF} --with-gnome-print" +use perl && G2CONF="${G2CONF} --with-perl" +use python && G2CONF="${G2CONF} --with-python" + +src_unpack() { + unpack ${A} + + # fix for gnome-print error + cd ${S} + epatch ${FILESDIR}/${P}_gnome-print.patch + epatch ${FILESDIR}/${P}-configure.ac.patch + autoconf || die + libtoolize --copy --force || die +} + +DOCS="AUTHORS COPYING ChangeLog HACKING NEWS README" + +pkg_postinst() { + einfo "Inkscape 0.41 adds several new optional extensions." + einfo "It is normal to get a warning the first time Inkscape is run," + einfo "" + einfo "If you want all extensions supported, recompile Inkscape" + einfo "with the \'plugin\' USE flag. It will install:" + einfo "" + einfo " >=media-gfx/pstoedit-3.33" + einfo " >=media-gfx/skencil-0.6.16" + einfo " media-libs/libwmf" + einfo " app-office/dia" +} |