From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from lists.gentoo.org ([140.105.134.102] helo=robin.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1JBD1V-0007yC-6n for garchives@archives.gentoo.org; Sat, 05 Jan 2008 17:41:29 +0000 Received: from robin.gentoo.org (localhost [127.0.0.1]) by robin.gentoo.org (8.14.2/8.14.0) with SMTP id m05HfL8f011393; Sat, 5 Jan 2008 17:41:21 GMT Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by robin.gentoo.org (8.14.2/8.14.0) with ESMTP id m05HfJcF011357 for ; Sat, 5 Jan 2008 17:41:20 GMT Received: from stork.gentoo.org (stork.gentoo.org [64.127.104.133]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTP id 953FD659EA for ; Sat, 5 Jan 2008 17:41:19 +0000 (UTC) Received: from beandog by stork.gentoo.org with local (Exim 4.68) (envelope-from ) id 1JBD1K-0001aa-CA for gentoo-commits@lists.gentoo.org; Sat, 05 Jan 2008 17:41:18 +0000 From: "Steve Dibb (beandog)" To: gentoo-commits@lists.gentoo.org Reply-To: gentoo-dev@lists.gentoo.org, beandog@gentoo.org Subject: [gentoo-commits] gentoo-x86 commit in app-text/sword: ChangeLog sword-1.5.10.ebuild X-VCS-Repository: gentoo-x86 X-VCS-Files: ChangeLog sword-1.5.10.ebuild X-VCS-Directories: app-text/sword X-VCS-Committer: beandog X-VCS-Committer-Name: Steve Dibb Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Message-Id: Sender: Steve Dibb Date: Sat, 05 Jan 2008 17:41:18 +0000 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@gentoo.org X-Archives-Salt: 92e41789-2410-4642-9237-d0929cf7451b X-Archives-Hash: 643dd60be1778d1dafc649f71ff0711c beandog 08/01/05 17:41:18 Modified: ChangeLog Added: sword-1.5.10.ebuild Log: Version bump, bug 198617 (Portage version: 2.1.4_rc14) Revision Changes Path 1.35 app-text/sword/ChangeLog file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.35&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.35&content-type=text/plain diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?r1=1.34&r2=1.35 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v retrieving revision 1.34 retrieving revision 1.35 diff -u -r1.34 -r1.35 --- ChangeLog 19 Mar 2007 17:29:13 -0000 1.34 +++ ChangeLog 5 Jan 2008 17:41:17 -0000 1.35 @@ -1,6 +1,11 @@ # ChangeLog for app-text/sword -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.34 2007/03/19 17:29:13 kloeri Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.35 2008/01/05 17:41:17 beandog Exp $ + +*sword-1.5.10 (05 Jan 2008) + + 05 Jan 2008; Steve Dibb +sword-1.5.10.ebuild: + Version bump, bug 198617 19 Mar 2007; Bryan Østergaard metadata.xml: Remove squinky86 from metadata.xml due to retirement. 1.1 app-text/sword/sword-1.5.10.ebuild file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.5.10.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.5.10.ebuild?rev=1.1&content-type=text/plain Index: sword-1.5.10.ebuild =================================================================== # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-text/sword/sword-1.5.10.ebuild,v 1.1 2008/01/05 17:41:17 beandog Exp $ DESCRIPTION="Library for Bible reading software." HOMEPAGE="http://www.crosswire.org/sword/" SRC_URI="http://www.crosswire.org/ftpmirror/pub/sword/source/v1.5/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd" IUSE="curl debug doc icu lucene" RDEPEND="sys-libs/zlib curl? ( net-misc/curl ) icu? ( dev-libs/icu ) lucene? ( dev-cpp/clucene )" DEPEND="${RDEPEND} dev-util/pkgconfig" src_compile() { econf --with-zlib \ --with-conf \ $(use_enable curl) \ $(use_enable debug) \ $(use_with icu) \ $(use_enable lucene) || die "configure failed" emake || die "make failed" } src_install() { make DESTDIR="${D}" install || die "install failed" dodoc AUTHORS CODINGSTYLE ChangeLog INSTALL README if use doc ;then rm -rf examples/.cvsignore rm -rf examples/cmdline/.cvsignore rm -rf examples/cmdline/.deps cp -R samples examples ${D}/usr/share/doc/${PF}/ fi # global configuration file insinto /etc doins "${FILESDIR}/sword.conf" } pkg_postinst() { echo elog "Check out http://www.crosswire.org/sword/modules/" elog "to download modules that you would like to use with SWORD." elog "Follow module installation instructions found on" elog "the web or in /usr/share/doc/${PF}/INSTALL.gz." echo } -- gentoo-commits@gentoo.org mailing list