summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2009-01-03 00:40:35 +0000
committerChristoph Mende <angelos@gentoo.org>2009-01-03 00:40:35 +0000
commit05f9a2af7642ecd5c51e9bce70efa1462b189dcd (patch)
tree04ba52b1f57dfb06829567f2497c2febb9ed7d2c /app-text/txt2pdbdoc
parentAutomated update of use.local.desc (diff)
downloadgentoo-2-05f9a2af7642ecd5c51e9bce70efa1462b189dcd.tar.gz
gentoo-2-05f9a2af7642ecd5c51e9bce70efa1462b189dcd.tar.bz2
gentoo-2-05f9a2af7642ecd5c51e9bce70efa1462b189dcd.zip
Prevent automatic autotools rebuilding (bug 226433) and respect CFLAGS (bug 240145)
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-text/txt2pdbdoc')
-rw-r--r--app-text/txt2pdbdoc/ChangeLog8
-rw-r--r--app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild33
2 files changed, 20 insertions, 21 deletions
diff --git a/app-text/txt2pdbdoc/ChangeLog b/app-text/txt2pdbdoc/ChangeLog
index 047e3df2ea1d..efb290431f92 100644
--- a/app-text/txt2pdbdoc/ChangeLog
+++ b/app-text/txt2pdbdoc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/txt2pdbdoc
-# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/txt2pdbdoc/ChangeLog,v 1.19 2008/07/09 06:37:17 tove Exp $
+# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/txt2pdbdoc/ChangeLog,v 1.20 2009/01/03 00:40:35 angelos Exp $
+
+ 03 Jan 2009; Christoph Mende <angelos@gentoo.org> txt2pdbdoc-1.4.4.ebuild:
+ Prevent automatic autotools rebuilding (bug 226433) and respect CFLAGS
+ (bug 240145)
09 Jul 2008; Torsten Veller <tove@gentoo.org> metadata.xml:
Remove g2boojum from metadata (#208353)
diff --git a/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild b/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild
index 4caae923cdbc..a63e9f2742aa 100644
--- a/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild
+++ b/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild
@@ -1,34 +1,29 @@
-# Copyright 1999-2006 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/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild,v 1.8 2006/10/10 21:15:54 g2boojum Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/txt2pdbdoc/txt2pdbdoc-1.4.4.ebuild,v 1.9 2009/01/03 00:40:35 angelos Exp $
-DESCRIPTION="Text to Doc file converter for the Palm Pilot. Also includes an HTML to Doc converter."
-SRC_URI="http://homepage.mac.com/pauljlucas/software/${P}.tar.gz"
+inherit autotools
+
+DESCRIPTION="Text/HTML to Doc file converter for the Palm Pilot"
HOMEPAGE="http://homepage.mac.com/pauljlucas/software/txt2pdbdoc/"
-KEYWORDS="amd64 ppc sparc x86"
-SLOT="0"
+SRC_URI="http://homepage.mac.com/pauljlucas/software/${P}.tar.gz"
+
LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ppc sparc x86"
+IUSE=""
DEPEND="dev-lang/perl"
-IUSE=""
-# automake error: INSTALL and NEWS files missing, and make breaks w/o them
src_unpack() {
unpack ${A}
- cd ${S}
- touch INSTALL NEWS
-}
+ cd "${S}"
-src_compile() {
- ./configure \
- --host=${CHOST} \
- --prefix=/usr \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man || die "./configure failed"
- emake || die
+ sed -i -e "/^CFLAGS/d" configure.in
+ eautoreconf
}
src_install () {
- make DESTDIR=${D} install || die
+ emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS README ChangeLog
}