diff options
author | Christian Hartmann <ian@gentoo.org> | 2007-08-25 17:54:23 +0000 |
---|---|---|
committer | Christian Hartmann <ian@gentoo.org> | 2007-08-25 17:54:23 +0000 |
commit | 837172c02c62bbeac8fef39374668f29e548a31d (patch) | |
tree | 1b41479077723a92f02cf2046ab5ee7dd4dd8243 /app-text/po4a | |
parent | amd64 stable (diff) | |
download | gentoo-2-837172c02c62bbeac8fef39374668f29e548a31d.tar.gz gentoo-2-837172c02c62bbeac8fef39374668f29e548a31d.tar.bz2 gentoo-2-837172c02c62bbeac8fef39374668f29e548a31d.zip |
Fix test failures on sgml test mentioned in bug #189440 - many thanks go to upstream (nekral in #po4a on oftc) for helping me fix this one!
(Portage version: 2.1.3.6)
Diffstat (limited to 'app-text/po4a')
-rw-r--r-- | app-text/po4a/ChangeLog | 8 | ||||
-rw-r--r-- | app-text/po4a/files/digest-po4a-0.32-r1 | 3 | ||||
-rw-r--r-- | app-text/po4a/po4a-0.32-r1.ebuild | 31 |
3 files changed, 41 insertions, 1 deletions
diff --git a/app-text/po4a/ChangeLog b/app-text/po4a/ChangeLog index 09f4a93364f3..ff6dd4bfebed 100644 --- a/app-text/po4a/ChangeLog +++ b/app-text/po4a/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-text/po4a # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/po4a/ChangeLog,v 1.24 2007/08/19 20:35:09 fmccor Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/po4a/ChangeLog,v 1.25 2007/08/25 17:54:23 ian Exp $ + +*po4a-0.32-r1 (25 Aug 2007) + + 25 Aug 2007; Christian Hartmann <ian@gentoo.org> +po4a-0.32-r1.ebuild: + Fix test failures on sgml test mentioned in bug #189440 - many thanks go to + upstream (nekral in #po4a on oftc) for helping me fix this one! 19 Aug 2007; Ferris McCormick <fmccor@gentoo.org> po4a-0.32.ebuild: Sparc stable --- Security Bug #189440 --- builds itself and passes all 134 diff --git a/app-text/po4a/files/digest-po4a-0.32-r1 b/app-text/po4a/files/digest-po4a-0.32-r1 new file mode 100644 index 000000000000..eb934b30126d --- /dev/null +++ b/app-text/po4a/files/digest-po4a-0.32-r1 @@ -0,0 +1,3 @@ +MD5 d026b224965b50afd9924b61d0df2a06 po4a-0.32.tar.gz 882223 +RMD160 da70a5914f9a7a9fb80fb92a19e73d11eb3cff74 po4a-0.32.tar.gz 882223 +SHA256 aab81329a73ea92b3a46c0a489017cc793b89b4c8beed84210253a35675c533e po4a-0.32.tar.gz 882223 diff --git a/app-text/po4a/po4a-0.32-r1.ebuild b/app-text/po4a/po4a-0.32-r1.ebuild new file mode 100644 index 000000000000..d2be40b7365e --- /dev/null +++ b/app-text/po4a/po4a-0.32-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2007 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/po4a/po4a-0.32-r1.ebuild,v 1.1 2007/08/25 17:54:23 ian Exp $ + +inherit eutils perl-app + +DESCRIPTION="Tools for helping translation of documentation" +HOMEPAGE="http://po4a.alioth.debian.org" +SRC_URI="http://alioth.debian.org/frs/download.php/2108/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~ppc ~s390 ~sh ~sparc ~x86" +IUSE="test" +SRC_TEST="do" + +RDEPEND="dev-perl/SGMLSpm + >=sys-devel/gettext-0.13 + app-text/openjade + dev-perl/Locale-gettext + dev-perl/TermReadKey + dev-perl/Text-WrapI18N + dev-lang/perl" +DEPEND="${RDEPEND} + >=dev-perl/module-build-0.28 + test? ( app-text/docbook-sgml-dtd app-text/docbook-sgml-utils )" + +src_compile() { + rm "${S}"/Makefile + perl-app_src_compile +} |