diff options
author | Alexis Ballier <aballier@gentoo.org> | 2011-05-25 18:57:12 +0000 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2011-05-25 18:57:12 +0000 |
commit | 5424a21ced7897a083c7e5ab3c6c07df7c11ba55 (patch) | |
tree | c6cb3dcc3d00de8c2d388cac41e5226dbed1ab7a /app-text/dvisvgm | |
parent | Regenerate manifest for javadocs-patch keyword substitution fixup (diff) | |
download | gentoo-2-5424a21ced7897a083c7e5ab3c6c07df7c11ba55.tar.gz gentoo-2-5424a21ced7897a083c7e5ab3c6c07df7c11ba55.tar.bz2 gentoo-2-5424a21ced7897a083c7e5ab3c6c07df7c11ba55.zip |
version bump
(Portage version: 2.2.0_alpha35/cvs/Linux x86_64)
Diffstat (limited to 'app-text/dvisvgm')
-rw-r--r-- | app-text/dvisvgm/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/dvisvgm/dvisvgm-1.0.7.ebuild | 32 |
2 files changed, 38 insertions, 1 deletions
diff --git a/app-text/dvisvgm/ChangeLog b/app-text/dvisvgm/ChangeLog index 5a6fa6e71516..e8523b7baa42 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.10 2011/04/28 14:50:58 aballier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dvisvgm/ChangeLog,v 1.11 2011/05/25 18:57:12 aballier Exp $ + +*dvisvgm-1.0.7 (25 May 2011) + + 25 May 2011; Alexis Ballier <aballier@gentoo.org> +dvisvgm-1.0.7.ebuild: + version bump *dvisvgm-1.0.6 (28 Apr 2011) diff --git a/app-text/dvisvgm/dvisvgm-1.0.7.ebuild b/app-text/dvisvgm/dvisvgm-1.0.7.ebuild new file mode 100644 index 000000000000..a039531c1307 --- /dev/null +++ b/app-text/dvisvgm/dvisvgm-1.0.7.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.7.ebuild,v 1.1 2011/05/25 18:57:12 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 +} |