diff options
author | 2014-10-14 19:01:57 +0000 | |
---|---|---|
committer | 2014-10-14 19:01:57 +0000 | |
commit | 1faa273b81ac66ca5ff6c4c9842f67645885bb9e (patch) | |
tree | ea3a20e8ed1e57e0c9ce7f48c8ecdc2de6990b48 /app-text | |
parent | Version bump wrt bug 525426 (diff) | |
download | gentoo-2-1faa273b81ac66ca5ff6c4c9842f67645885bb9e.tar.gz gentoo-2-1faa273b81ac66ca5ff6c4c9842f67645885bb9e.tar.bz2 gentoo-2-1faa273b81ac66ca5ff6c4c9842f67645885bb9e.zip |
Version bump wrt bug 525424
(Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 28DB029C)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/xiphos/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/xiphos/xiphos-3.2.2.ebuild | 91 |
2 files changed, 97 insertions, 1 deletions
diff --git a/app-text/xiphos/ChangeLog b/app-text/xiphos/ChangeLog index ebfd8e6f8a2f..0611db384a94 100644 --- a/app-text/xiphos/ChangeLog +++ b/app-text/xiphos/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/xiphos # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/ChangeLog,v 1.16 2014/02/04 23:59:22 creffett Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/ChangeLog,v 1.17 2014/10/14 19:01:57 creffett Exp $ + +*xiphos-3.2.2 (14 Oct 2014) + + 14 Oct 2014; Chris Reffett <creffett@gentoo.org> +xiphos-3.2.2.ebuild: + Version bump wrt bug 525424 *xiphos-3.1.6 (04 Feb 2014) diff --git a/app-text/xiphos/xiphos-3.2.2.ebuild b/app-text/xiphos/xiphos-3.2.2.ebuild new file mode 100644 index 000000000000..a2e4fa5cd869 --- /dev/null +++ b/app-text/xiphos/xiphos-3.2.2.ebuild @@ -0,0 +1,91 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/xiphos/xiphos-3.2.2.ebuild,v 1.1 2014/10/14 19:01:57 creffett Exp $ + +# TODO: waf-utils.eclass ? + +EAPI=5 +PYTHON_COMPAT=( python2_7 ) +inherit flag-o-matic gnome2-utils python-single-r1 toolchain-funcs + +DESCRIPTION="A bible study frontend for Sword (formerly known as GnomeSword)" +HOMEPAGE="http://xiphos.org/" +SRC_URI="mirror://sourceforge/gnomesword/${P}.tar.gz" + +LICENSE="GPL-2 FDL-1.1 LGPL-2 MIT MPL-1.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="dbus debug webkit" + +REQUIRED_USE="${PYTHON_REQUIRED_USE}" + +RDEPEND="${PYTHON_DEPS} + >=app-text/sword-1.7.3 + >=dev-libs/glib-2 + dev-libs/libxml2 + gnome-base/gconf + gnome-extra/gtkhtml:4.0 + >=gnome-extra/libgsf-1.14 + x11-libs/gtk+:3 + dbus? ( dev-libs/dbus-glib ) + webkit? ( net-libs/webkit-gtk:3 ) +" +DEPEND="${RDEPEND} + app-text/docbook2X + app-text/gnome-doc-utils + app-text/rarian + dev-libs/libxslt + dev-util/intltool + virtual/pkgconfig + sys-devel/gettext +" + +pkg_setup() { + python-single-r1_pkg_setup +} + +src_prepare() { + sed -i \ + -e '/FLAGS_DEBUG/s:-g:-Wall:' \ + -e '/FLAGS_RELEASE/s:-O2:-Wall:' \ + wscript || die +} + +src_configure() { + append-cppflags -DNO_SWORD_SET_RENDER_NOTE_NUMBERS=1 + + tc-export AR CC CPP CXX RANLIB + + local backend=gtkhtml + use webkit && backend=webkit + + CCFLAGS="${CFLAGS}" \ + LINKFLAGS="${LDFLAGS}" \ + SGML2MAN="$(type -P docbook2man.pl)" \ + ./waf -v \ + --prefix=/usr \ + --gtk=3 \ + --debug-level=$(use debug && echo debug || echo release) \ + $(use dbus || echo --disable-dbus) \ + configure || die +} + +src_compile() { + ./waf -v build || die +} + +src_install() { + ./waf -v --destdir="${D}" install || die + + doman ${PN}.1 + dodoc AUTHORS ChangeLog README RELEASE-NOTES TODO + + dodoc Xiphos.ogg + docompress -x /usr/share/doc/${PF}/Xiphos.ogg + + rm -rf "${ED}"/usr/share/doc/${PN} +} + +pkg_preinst() { gnome2_icon_savelist; } +pkg_postinst() { gnome2_icon_cache_update; } +pkg_postrm() { gnome2_icon_cache_update; } |