creffett 14/10/14 19:01:57 Modified: ChangeLog Added: xiphos-3.2.2.ebuild Log: Version bump wrt bug 525424 (Portage version: 2.2.14_rc1/cvs/Linux x86_64, signed Manifest commit with key 28DB029C)
Revision Changes Path 1.17 app-text/xiphos/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xiphos/ChangeLog?rev=1.17&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xiphos/ChangeLog?rev=1.17&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xiphos/ChangeLog?r1=1.16&r2=1.17 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-text/xiphos/ChangeLog,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- ChangeLog 4 Feb 2014 23:59:22 -0000 1.16 +++ ChangeLog 14 Oct 2014 19:01:57 -0000 1.17 @@ -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 <creff...@gentoo.org> +xiphos-3.2.2.ebuild: + Version bump wrt bug 525424 *xiphos-3.1.6 (04 Feb 2014) 1.1 app-text/xiphos/xiphos-3.2.2.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xiphos/xiphos-3.2.2.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/xiphos/xiphos-3.2.2.ebuild?rev=1.1&content-type=text/plain Index: xiphos-3.2.2.ebuild =================================================================== # 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; }