diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-06-02 14:57:46 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-06-02 14:57:46 +0000 |
commit | 7b501993086881e3e3b51b2350ce6a7672569e8e (patch) | |
tree | 3a45b108ce2fba6d9ca158d0b5fa2edfce4d75da /app-text | |
parent | add ~x86, bug #368983 (diff) | |
download | gentoo-2-7b501993086881e3e3b51b2350ce6a7672569e8e.tar.gz gentoo-2-7b501993086881e3e3b51b2350ce6a7672569e8e.tar.bz2 gentoo-2-7b501993086881e3e3b51b2350ce6a7672569e8e.zip |
version bump
(Portage version: 2.2.0_alpha37/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/dvisvgm/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/dvisvgm/dvisvgm-1.0.8.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/app-text/dvisvgm/ChangeLog b/app-text/dvisvgm/ChangeLog index 6187883c5631..34b4b53b9193 100644 --- a/app-text/dvisvgm/ChangeLog +++ b/app-text/dvisvgm/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/dvisvgm # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/ChangeLog,v 1.12 2011/05/25 18:59:01 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/ChangeLog,v 1.13 2011/06/02 14:57:46 aballier Exp $ + +*dvisvgm-1.0.8 (02 Jun 2011) + + 02 Jun 2011; Alexis Ballier <aballier@gentoo.org> +dvisvgm-1.0.8.ebuild: + version bump 25 May 2011; Alexis Ballier <aballier@gentoo.org> -dvisvgm-1.0.3.ebuild, -dvisvgm-1.0.4.ebuild, -dvisvgm-1.0.5.ebuild, -dvisvgm-1.0.6.ebuild: diff --git a/app-text/dvisvgm/dvisvgm-1.0.8.ebuild b/app-text/dvisvgm/dvisvgm-1.0.8.ebuild new file mode 100644 index 000000000000..9caf04d8c095 --- /dev/null +++ b/app-text/dvisvgm/dvisvgm-1.0.8.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/dvisvgm-1.0.8.ebuild,v 1.1 2011/06/02 14:57:46 aballier Exp $ + +EAPI=3 + +DESCRIPTION="Converts DVI files to SVG" +HOMEPAGE="http://dvisvgm.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-macos" +IUSE="test" +# Tests don't work from $WORKDIR: kpathsea tries to search in relative +# directories from where the binary is executed. +# We cannot really use absolute paths in the kpathsea configuration since that +# would make it harder for prefix installs. +RESTRICT="test" + +RDEPEND="virtual/tex-base + app-text/ghostscript-gpl + media-libs/freetype:2 + sys-libs/zlib" +DEPEND="${RDEPEND} + dev-util/pkgconfig + test? ( dev-util/gtest )" + +src_install() { + emake DESTDIR="${D}" install || die + dodoc AUTHORS NEWS README || die +} |