* [gentoo-commits] gentoo-x86 commit in app-text/catdoc: ChangeLog catdoc-0.94.2-r1.ebuild
@ 2008-10-05 21:33 Alexis Ballier (aballier)
0 siblings, 0 replies; 3+ messages in thread
From: Alexis Ballier (aballier) @ 2008-10-05 21:33 UTC (permalink / raw
To: gentoo-commits
aballier 08/10/05 21:33:25
Modified: ChangeLog
Added: catdoc-0.94.2-r1.ebuild
Log:
Respect CFLAGS/LDFLAGS, bug #240127
(Portage version: 2.2_rc11/cvs/Linux 2.6.26.5 x86_64)
Revision Changes Path
1.23 app-text/catdoc/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.23&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.23&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?r1=1.22&r2=1.23
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v
retrieving revision 1.22
retrieving revision 1.23
diff -u -r1.22 -r1.23
--- ChangeLog 17 Aug 2008 17:25:16 -0000 1.22
+++ ChangeLog 5 Oct 2008 21:33:25 -0000 1.23
@@ -1,6 +1,12 @@
# ChangeLog for app-text/catdoc
# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.22 2008/08/17 17:25:16 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.23 2008/10/05 21:33:25 aballier Exp $
+
+*catdoc-0.94.2-r1 (05 Oct 2008)
+
+ 05 Oct 2008; Alexis Ballier <aballier@gentoo.org>
+ +files/catdoc-0.94.2-flags.patch, +catdoc-0.94.2-r1.ebuild:
+ Respect CFLAGS/LDFLAGS, bug #240127
17 Aug 2008; Alexis Ballier <aballier@gentoo.org> -catdoc-0.94.1.ebuild:
remove old
1.1 app-text/catdoc/catdoc-0.94.2-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.1&content-type=text/plain
Index: catdoc-0.94.2-r1.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v 1.1 2008/10/05 21:33:25 aballier Exp $
WANT_AUTOCONF=2.1
WANT_AUTOMAKE=none
inherit autotools eutils
DESCRIPTION="A convertor for Microsoft Word, Excel and RTF Files to text"
HOMEPAGE="http://www.wagner.pp.ru/~vitus/software/catdoc/"
SRC_URI="http://ftp.wagner.pp.ru/pub/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
IUSE="tk"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
DEPEND="tk? ( >=dev-lang/tk-8.1 )"
DOCS="CODING.STD CREDITS NEWS README TODO"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-flags.patch"
eautoconf
}
src_compile() {
local myconf="--with-install-root=${D}"
use tk \
&& myconf="${myconf} --with-wish=/usr/bin/wish" \
|| myconf="${myconf} --disable-wordview"
econf ${myconf} || die
emake LIB_DIR=/usr/share/catdoc || die
}
src_install() {
emake -j1 mandir=/usr/share/man/man1 install || die
dodoc ${DOCS}
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/catdoc: ChangeLog catdoc-0.94.2-r1.ebuild
@ 2009-06-09 12:39 Diego Petteno (flameeyes)
0 siblings, 0 replies; 3+ messages in thread
From: Diego Petteno (flameeyes) @ 2009-06-09 12:39 UTC (permalink / raw
To: gentoo-commits
flameeyes 09/06/09 12:39:47
Modified: ChangeLog catdoc-0.94.2-r1.ebuild
Log:
Add a patch that fixes the previous broken syntax and allows rebuilding autoconf with version 2.63.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Revision Changes Path
1.24 app-text/catdoc/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.24&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.24&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?r1=1.23&r2=1.24
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -r1.23 -r1.24
--- ChangeLog 5 Oct 2008 21:33:25 -0000 1.23
+++ ChangeLog 9 Jun 2009 12:39:47 -0000 1.24
@@ -1,6 +1,11 @@
# ChangeLog for app-text/catdoc
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.23 2008/10/05 21:33:25 aballier Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.24 2009/06/09 12:39:47 flameeyes Exp $
+
+ 09 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ catdoc-0.94.2-r1.ebuild, +files/catdoc-0.94.2+autoconf-2.63.patch:
+ Add a patch that fixes the previous broken syntax and allows rebuilding
+ autoconf with version 2.63.
*catdoc-0.94.2-r1 (05 Oct 2008)
1.2 app-text/catdoc/catdoc-0.94.2-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?r1=1.1&r2=1.2
Index: catdoc-0.94.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- catdoc-0.94.2-r1.ebuild 5 Oct 2008 21:33:25 -0000 1.1
+++ catdoc-0.94.2-r1.ebuild 9 Jun 2009 12:39:47 -0000 1.2
@@ -1,8 +1,7 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v 1.1 2008/10/05 21:33:25 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v 1.2 2009/06/09 12:39:47 flameeyes Exp $
-WANT_AUTOCONF=2.1
WANT_AUTOMAKE=none
inherit autotools eutils
@@ -24,6 +23,7 @@
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${P}-flags.patch"
+ epatch "${FILESDIR}/${P}+autoconf-2.63.patch"
eautoconf
}
^ permalink raw reply [flat|nested] 3+ messages in thread
* [gentoo-commits] gentoo-x86 commit in app-text/catdoc: ChangeLog catdoc-0.94.2-r1.ebuild
@ 2010-02-22 21:07 Jonathan Callen (abcd)
0 siblings, 0 replies; 3+ messages in thread
From: Jonathan Callen (abcd) @ 2010-02-22 21:07 UTC (permalink / raw
To: gentoo-commits
abcd 10/02/22 21:07:23
Modified: ChangeLog catdoc-0.94.2-r1.ebuild
Log:
Transfer prefix keywords, bump EAPI
(Portage version: -svn/cvs/Linux i686)
Revision Changes Path
1.25 app-text/catdoc/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.25&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?rev=1.25&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/ChangeLog?r1=1.24&r2=1.25
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- ChangeLog 9 Jun 2009 12:39:47 -0000 1.24
+++ ChangeLog 22 Feb 2010 21:07:22 -0000 1.25
@@ -1,6 +1,9 @@
# ChangeLog for app-text/catdoc
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.24 2009/06/09 12:39:47 flameeyes Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/ChangeLog,v 1.25 2010/02/22 21:07:22 abcd Exp $
+
+ 22 Feb 2010; Jonathan Callen <abcd@gentoo.org> catdoc-0.94.2-r1.ebuild:
+ Transfer prefix keywords, bump EAPI
09 Jun 2009; Diego E. Pettenò <flameeyes@gentoo.org>
catdoc-0.94.2-r1.ebuild, +files/catdoc-0.94.2+autoconf-2.63.patch:
1.3 app-text/catdoc/catdoc-0.94.2-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild?r1=1.2&r2=1.3
Index: catdoc-0.94.2-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- catdoc-0.94.2-r1.ebuild 9 Jun 2009 12:39:47 -0000 1.2
+++ catdoc-0.94.2-r1.ebuild 22 Feb 2010 21:07:22 -0000 1.3
@@ -1,7 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v 1.2 2009/06/09 12:39:47 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/catdoc/catdoc-0.94.2-r1.ebuild,v 1.3 2010/02/22 21:07:22 abcd Exp $
+EAPI=3
WANT_AUTOMAKE=none
inherit autotools eutils
@@ -19,30 +20,27 @@
DOCS="CODING.STD CREDITS NEWS README TODO"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}/${P}-flags.patch"
epatch "${FILESDIR}/${P}+autoconf-2.63.patch"
- eautoconf
-}
-src_compile() {
+ # Fix for case-insensitive filesystems
+ echo ".PHONY: all install clean distclean dist" >> Makefile.in
- local myconf="--with-install-root=${D}"
+ eautoconf
+}
- use tk \
- && myconf="${myconf} --with-wish=/usr/bin/wish" \
- || myconf="${myconf} --disable-wordview"
+src_configure() {
+ econf --with-install-root="${D}" \
+ $(use_with tk wish "${EPREFIX}"/usr/bin/wish) \
+ $(use_with !tk wordview)
+}
- econf ${myconf} || die
+src_compile() {
emake LIB_DIR=/usr/share/catdoc || die
-
}
src_install() {
-
- emake -j1 mandir=/usr/share/man/man1 install || die
+ emake -j1 mandir="${EPREFIX}"/usr/share/man/man1 install || die
dodoc ${DOCS}
-
}
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-02-22 21:07 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-22 21:07 [gentoo-commits] gentoo-x86 commit in app-text/catdoc: ChangeLog catdoc-0.94.2-r1.ebuild Jonathan Callen (abcd)
-- strict thread matches above, loose matches on Subject: below --
2009-06-09 12:39 Diego Petteno (flameeyes)
2008-10-05 21:33 Alexis Ballier (aballier)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox