summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2011-04-02 13:24:18 +0000
committerPatrick Lauer <patrick@gentoo.org>2011-04-02 13:24:18 +0000
commitca8541d4a844eea4fdc5e98658b181ed97f092e6 (patch)
tree231d42c03667e13040f4a3dd2aed9b59da9fdf06 /app-text/tofrodos
parentBump (diff)
downloadgentoo-2-ca8541d4a844eea4fdc5e98658b181ed97f092e6.tar.gz
gentoo-2-ca8541d4a844eea4fdc5e98658b181ed97f092e6.tar.bz2
gentoo-2-ca8541d4a844eea4fdc5e98658b181ed97f092e6.zip
Bump
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'app-text/tofrodos')
-rw-r--r--app-text/tofrodos/ChangeLog9
-rw-r--r--app-text/tofrodos/tofrodos-1.7.9.ebuild36
2 files changed, 43 insertions, 2 deletions
diff --git a/app-text/tofrodos/ChangeLog b/app-text/tofrodos/ChangeLog
index 3a7a2ad71e74..f80371ba6669 100644
--- a/app-text/tofrodos/ChangeLog
+++ b/app-text/tofrodos/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-text/tofrodos
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/tofrodos/ChangeLog,v 1.4 2010/01/31 13:57:09 vostorga Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/tofrodos/ChangeLog,v 1.5 2011/04/02 13:24:18 patrick Exp $
+
+*tofrodos-1.7.9 (02 Apr 2011)
+
+ 02 Apr 2011; Patrick Lauer <patrick@gentoo.org> +tofrodos-1.7.9.ebuild:
+ Bump
31 Jan 2010; <vostorga@gentoo.org> metadata.xml:
Adding myselft to list of maintainers
diff --git a/app-text/tofrodos/tofrodos-1.7.9.ebuild b/app-text/tofrodos/tofrodos-1.7.9.ebuild
new file mode 100644
index 000000000000..af94ba1fd489
--- /dev/null
+++ b/app-text/tofrodos/tofrodos-1.7.9.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-text/tofrodos/tofrodos-1.7.9.ebuild,v 1.1 2011/04/02 13:24:18 patrick Exp $
+
+inherit eutils
+
+DESCRIPTION="text file conversion utility that converts ASCII files between the
+MSDOS format and the Unix format"
+HOMEPAGE="http://tofrodos.sourceforge.net/"
+SRC_URI="http://tofrodos.sourceforge.net/download/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND=""
+
+S="${WORKDIR}/${PN}/src"
+
+src_unpack() {
+ unpack ${A}
+ cd "${S}"
+ epatch "${FILESDIR}"/${PN}-1.7.8-CFLAGS.patch
+}
+
+src_compile() {
+ emake DEBUG=1 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die "Compile failed."
+}
+
+src_install() {
+ dobin fromdos || die
+ dosym fromdos /usr/bin/todos || die
+ doman fromdos.1 || die
+}