diff options
author | Steve Dibb <beandog@gentoo.org> | 2010-04-21 13:40:32 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2010-04-21 13:40:32 +0000 |
commit | c6c7a3c4a86fdc77a6e3ff0072d7988d047186c5 (patch) | |
tree | dbb809e2a1ee0978591b5fc4df82b975eb5356dc /app-text/xiphos | |
parent | Block media-gfx/surf (bug #316511). (diff) | |
download | gentoo-2-c6c7a3c4a86fdc77a6e3ff0072d7988d047186c5.tar.gz gentoo-2-c6c7a3c4a86fdc77a6e3ff0072d7988d047186c5.tar.bz2 gentoo-2-c6c7a3c4a86fdc77a6e3ff0072d7988d047186c5.zip |
Version bump, bug 316149
(Portage version: 2.1.7.17/cvs/Linux x86_64)
Diffstat (limited to 'app-text/xiphos')
-rw-r--r-- | app-text/xiphos/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/xiphos/xiphos-3.1.3.ebuild | 53 |
2 files changed, 59 insertions, 1 deletions
diff --git a/app-text/xiphos/ChangeLog b/app-text/xiphos/ChangeLog index 39d3f28d6ee3..28314765b3cf 100644 --- a/app-text/xiphos/ChangeLog +++ b/app-text/xiphos/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/xiphos # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/ChangeLog,v 1.5 2010/03/22 05:32:53 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/ChangeLog,v 1.6 2010/04/21 13:40:32 beandog Exp $ + +*xiphos-3.1.3 (21 Apr 2010) + + 21 Apr 2010; Steve Dibb <beandog@gentoo.org> +xiphos-3.1.3.ebuild: + Version bump, bug 316149 *xiphos-3.1.2 (22 Mar 2010) diff --git a/app-text/xiphos/xiphos-3.1.3.ebuild b/app-text/xiphos/xiphos-3.1.3.ebuild new file mode 100644 index 000000000000..99931ce5f28c --- /dev/null +++ b/app-text/xiphos/xiphos-3.1.3.ebuild @@ -0,0 +1,53 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/xiphos-3.1.3.ebuild,v 1.1 2010/04/21 13:40:32 beandog Exp $ + +EAPI=2 +GCONF_DEBUG=no +inherit gnome2 + +DESCRIPTION="GTK+ based Bible study software, formerly gnomesword" +HOMEPAGE="http://xiphos.org/" +SRC_URI="mirror://sourceforge/gnomesword/${P}.tar.gz" + +LICENSE="GPL-2 FDL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="xulrunner" + +RDEPEND="dev-libs/glib:2 + >=x11-libs/gtk+-2.14:2 + dev-libs/libxml2 + >=gnome-base/libglade-2 + >=gnome-extra/gtkhtml-3.23 + >=app-text/sword-1.6 + dev-libs/dbus-glib + gnome-extra/libgsf + xulrunner? ( >=net-libs/xulrunner-1.9.1.3:1.9 )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/intltool + sys-devel/gettext + app-text/rarian + >=app-text/gnome-doc-utils-0.3.2" + +pkg_setup() { + G2CONF="--docdir=/usr/share/doc/${PF} + --disable-dependency-tracking" + + if ! use xulrunner; then + G2CONF="${G2CONF} --without-gecko" + fi +} + +src_install() { + gnome2_src_install + prepalldocs +} + +pkg_postinst() { + gnome2_pkg_postinst + elog "Xiphos requires modules to be of any use. You may install the" + elog "sword modules packages in app-dicts/, or download modules" + elog "individually from the sword website: http://crosswire.org/sword/" +} |