diff options
author | Patrick Lauer <patrick@gentoo.org> | 2013-04-19 03:32:27 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2013-04-19 03:32:27 +0000 |
commit | 24ca9a55d4332150c22e78133c1944f6006e29ae (patch) | |
tree | 4da20f22f6a443af47528b727215f583011d9513 /app-text/tofrodos | |
parent | Version bump. (diff) | |
download | gentoo-2-24ca9a55d4332150c22e78133c1944f6006e29ae.tar.gz gentoo-2-24ca9a55d4332150c22e78133c1944f6006e29ae.tar.bz2 gentoo-2-24ca9a55d4332150c22e78133c1944f6006e29ae.zip |
Bump for #466400
(Portage version: 2.2.0_alpha173/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-text/tofrodos')
-rw-r--r-- | app-text/tofrodos/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/tofrodos/tofrodos-1.7.12a.ebuild | 37 |
2 files changed, 44 insertions, 3 deletions
diff --git a/app-text/tofrodos/ChangeLog b/app-text/tofrodos/ChangeLog index f80371ba6669..39525f784e20 100644 --- a/app-text/tofrodos/ChangeLog +++ b/app-text/tofrodos/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/tofrodos -# 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 $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/tofrodos/ChangeLog,v 1.6 2013/04/19 03:32:27 patrick Exp $ + +*tofrodos-1.7.12a (19 Apr 2013) + + 19 Apr 2013; Patrick Lauer <patrick@gentoo.org> +tofrodos-1.7.12a.ebuild: + Bump for #466400 *tofrodos-1.7.9 (02 Apr 2011) @@ -22,4 +27,3 @@ 07 Mar 2009; Patrick Lauer <patrick@gentoo.org> +metadata.xml, +tofrodos-1.7.8.ebuild: Initial commit. Fixes #225903. Ebuild by Victor Ostorga. - diff --git a/app-text/tofrodos/tofrodos-1.7.12a.ebuild b/app-text/tofrodos/tofrodos-1.7.12a.ebuild new file mode 100644 index 000000000000..336203c027f6 --- /dev/null +++ b/app-text/tofrodos/tofrodos-1.7.12a.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/tofrodos/tofrodos-1.7.12a.ebuild,v 1.1 2013/04/19 03:32:27 patrick Exp $ + +EAPI=5 + +inherit eutils toolchain-funcs + +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_prepare() { + epatch "${FILESDIR}"/${PN}-1.7.8-CFLAGS.patch +} + +src_compile() { + emake DEBUG=1 CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" \ + CC="$(tc-getCC)" +} + +src_install() { + dobin fromdos + dosym fromdos /usr/bin/todos + doman fromdos.1 +} |