diff options
author | Justin Lecher <jlec@gentoo.org> | 2012-10-06 15:19:17 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2012-10-06 15:19:17 +0000 |
commit | fe68167bf8477baa7bcd88b8dc93261b8f38ca42 (patch) | |
tree | 63372725c2a911db9b7ca6c62acd6df50b7636a6 /app-text | |
parent | app-text/wdiff: Drop old (diff) | |
download | historical-fe68167bf8477baa7bcd88b8dc93261b8f38ca42.tar.gz historical-fe68167bf8477baa7bcd88b8dc93261b8f38ca42.tar.bz2 historical-fe68167bf8477baa7bcd88b8dc93261b8f38ca42.zip |
app-text/dos2unix: Drop old
Package-Manager: portage-2.2.0_alpha135/cvs/Linux x86_64
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/dos2unix/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/dos2unix/dos2unix-5.3.3.ebuild | 59 |
2 files changed, 4 insertions, 60 deletions
diff --git a/app-text/dos2unix/ChangeLog b/app-text/dos2unix/ChangeLog index afb93686220b..9af631b1e711 100644 --- a/app-text/dos2unix/ChangeLog +++ b/app-text/dos2unix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/dos2unix # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.102 2012/09/24 18:31:08 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.103 2012/10/06 15:19:17 jlec Exp $ + + 06 Oct 2012; Justin Lecher <jlec@gentoo.org> -dos2unix-5.3.3.ebuild: + Drop old 24 Sep 2012; Raúl Porcel <armin76@gentoo.org> dos2unix-6.0.ebuild: alpha/s390/sh/sparc stable wrt #421999 diff --git a/app-text/dos2unix/dos2unix-5.3.3.ebuild b/app-text/dos2unix/dos2unix-5.3.3.ebuild deleted file mode 100644 index 561b876128f0..000000000000 --- a/app-text/dos2unix/dos2unix-5.3.3.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-5.3.3.ebuild,v 1.8 2012/06/17 18:52:19 armin76 Exp $ - -EAPI=4 - -inherit eutils toolchain-funcs - -DESCRIPTION="Convert DOS or MAC text files to UNIX format or vice versa" -HOMEPAGE="http://www.xs4all.nl/~waterlan/dos2unix.html http://sourceforge.net/projects/dos2unix/" -SRC_URI=" - http://www.xs4all.nl/~waterlan/${PN}/${P}.tar.gz - mirror://sourceforge/${PN}/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris" -IUSE="debug nls" - -RDEPEND=" - !app-text/hd2u - !app-text/unix2dos - virtual/libintl" -DEPEND=" - ${RDEPEND} - dev-lang/perl" - -src_prepare() { - sed \ - -e '/^LDFLAGS/s|=|+=|' \ - -e '/^CC/s|=|?=|' \ - -e '/CFLAGS_OS \+=/d' \ - -e '/LDFLAGS_EXTRA \+=/d' \ - -e "/^CFLAGS/s|-O2|${CFLAGS}|" \ - -i Makefile || die - - if use debug ; then - sed -e "/^DEBUG/s:0:1:" \ - -e "/EXTRA_CFLAGS +=/s:-g::" \ - -i Makefile || die - fi - - tc-export CC -} - -lintl() { - # same logic as from virtual/libintl - use !elibc_glibc && use !elibc_uclibc && echo "-lintl" -} - -src_compile() { - emake prefix="${EPREFIX}/usr" \ - $(use nls && echo "LDFLAGS_EXTRA=$(lintl)" || echo "ENABLE_NLS=") -} - -src_install() { - emake DESTDIR="${D}" prefix="${EPREFIX}/usr" \ - $(use nls || echo "ENABLE_NLS=") install -} |