diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-03 22:30:28 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-03 22:30:28 +0000 |
commit | 39e365bec279c5a4405fe45a5021b12de31a7ac7 (patch) | |
tree | 61f604b33fdc1ab5d3658c1ba8a7d4dd227143d0 /media-gfx | |
parent | www-client/httrack: Fix "severe warnings" (diff) | |
download | gentoo-2-39e365bec279c5a4405fe45a5021b12de31a7ac7.tar.gz gentoo-2-39e365bec279c5a4405fe45a5021b12de31a7ac7.tar.bz2 gentoo-2-39e365bec279c5a4405fe45a5021b12de31a7ac7.zip |
Remove unnecessary quoting and move variables into more standard locations.
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/inkscape/ChangeLog | 5 | ||||
-rw-r--r-- | media-gfx/inkscape/inkscape-0.48.4-r1.ebuild | 21 |
2 files changed, 13 insertions, 13 deletions
diff --git a/media-gfx/inkscape/ChangeLog b/media-gfx/inkscape/ChangeLog index b136c651c34e..f39aee791404 100644 --- a/media-gfx/inkscape/ChangeLog +++ b/media-gfx/inkscape/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for media-gfx/inkscape # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.197 2013/05/01 13:33:22 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/ChangeLog,v 1.198 2013/05/03 22:30:28 radhermit Exp $ + + 03 May 2013; Tim Harder <radhermit@gentoo.org> inkscape-0.48.4-r1.ebuild: + Remove unnecessary quoting and move variables into more standard locations. *inkscape-0.48.4-r1 (01 May 2013) diff --git a/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild b/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild index d37a0444e19c..dd8744e950fe 100644 --- a/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild +++ b/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild @@ -1,29 +1,25 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild,v 1.2 2013/05/01 13:42:39 hasufell Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/inkscape/inkscape-0.48.4-r1.ebuild,v 1.3 2013/05/03 22:30:28 radhermit Exp $ EAPI=5 - +PYTHON_COMPAT=( python{2_6,2_7} ) +PYTHON_REQ_USE="xml" GCONF_DEBUG=no -PYTHON_COMPAT=( python2_6 python2_7 ) -PYTHON_REQ_USE="xml" inherit autotools eutils flag-o-matic gnome2 toolchain-funcs python-single-r1 -MY_P="${P/_/}" -S="${WORKDIR}/${MY_P}" -SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" +MY_P=${P/_/} DESCRIPTION="A SVG based generic vector-drawing program" HOMEPAGE="http://www.inkscape.org/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" LICENSE="GPL-2 LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris" IUSE="dia gnome postscript inkjar lcms nls spell wmf" -RESTRICT="test" - COMMON_DEPEND=" ${PYTHON_DEPS} >=app-text/poppler-0.12.3-r3[cairo,xpdf-headers(+)] @@ -57,8 +53,7 @@ COMMON_DEPEND=" # 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} +RDEPEND="${COMMON_DEPEND} dev-python/numpy[${PYTHON_USEDEP}] media-gfx/uniconvertor dia? ( app-office/dia ) @@ -71,7 +66,9 @@ DEPEND="${COMMON_DEPEND} virtual/pkgconfig >=dev-util/intltool-0.29" -DOCS="AUTHORS ChangeLog NEWS README*" +S=${WORKDIR}/${MY_P} + +RESTRICT="test" src_prepare() { gnome2_src_prepare |