summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiaran McCreesh <ciaranm@gentoo.org>2004-06-28 02:37:17 +0000
committerCiaran McCreesh <ciaranm@gentoo.org>2004-06-28 02:37:17 +0000
commit40c9ff0db90a405ae91217445cabc47b6d8fdd3f (patch)
tree3e1760298ffecf4ec50cdd16c646e9755794880a /app-text
parentversion bumps, closes #55225 (Manifest recommit) (diff)
downloadgentoo-2-40c9ff0db90a405ae91217445cabc47b6d8fdd3f.tar.gz
gentoo-2-40c9ff0db90a405ae91217445cabc47b6d8fdd3f.tar.bz2
gentoo-2-40c9ff0db90a405ae91217445cabc47b6d8fdd3f.zip
Added ~mips. Fixed CXXFLAGS so that non-x86 builds work. QA: added IUSE.
Diffstat (limited to 'app-text')
-rw-r--r--app-text/duconv/ChangeLog5
-rw-r--r--app-text/duconv/duconv-1.1.ebuild10
2 files changed, 12 insertions, 3 deletions
diff --git a/app-text/duconv/ChangeLog b/app-text/duconv/ChangeLog
index 8e7775a05595..3d3ce9628707 100644
--- a/app-text/duconv/ChangeLog
+++ b/app-text/duconv/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/duconv
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/duconv/ChangeLog,v 1.7 2004/06/24 22:34:01 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/duconv/ChangeLog,v 1.8 2004/06/28 02:37:17 ciaranm Exp $
+
+ 28 Jun 2004; Ciaran McCreesh <ciaranm@gentoo.org> duconv-1.1.ebuild:
+ Added ~mips. Fixed CXXFLAGS so that non-x86 builds work. QA: added IUSE.
12 Mar 2004; Michael Sterrett <mr_bones_@gentoo.org> duconv-1.1.ebuild:
Don't assign default to S; header fix
diff --git a/app-text/duconv/duconv-1.1.ebuild b/app-text/duconv/duconv-1.1.ebuild
index 114331271192..9774d7a78a42 100644
--- a/app-text/duconv/duconv-1.1.ebuild
+++ b/app-text/duconv/duconv-1.1.ebuild
@@ -1,17 +1,23 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/duconv/duconv-1.1.ebuild,v 1.12 2004/06/24 22:34:01 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/duconv/duconv-1.1.ebuild,v 1.13 2004/06/28 02:37:17 ciaranm Exp $
DESCRIPTION="A small util that converts from dos<->unix"
SRC_URI="http://people.freenet.de/tfaehr/${PN}.tgz"
HOMEPAGE="http://people.freenet.de/tfaehr/linux.htm"
LICENSE="as-is"
-KEYWORDS="x86 sparc"
+KEYWORDS="x86 sparc ~mips"
SLOT="0"
+IUSE=""
+DEPEND=">=sys-apps/sed-4"
+RDEPEND=""
+
src_unpack() {
unpack ${A}
mv ${WORKDIR}/home/torsten/gcc/duconv ${S}
+ cd ${S}
+ sed -i -e 's,-m486,,' Makefile || die "Makefile fix failed"
rm -R ${WORKDIR}/home
}