diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-03-16 09:00:32 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-03-16 09:00:32 +0000 |
commit | 3104d3acd717af1d235c5089d56c5f2fdec4055f (patch) | |
tree | b66992fb20d55f5f7c712885a5b2774ebc901d50 | |
parent | Sync eclasses from Emacs overlay. (diff) | |
download | gentoo-2-3104d3acd717af1d235c5089d56c5f2fdec4055f.tar.gz gentoo-2-3104d3acd717af1d235c5089d56c5f2fdec4055f.tar.bz2 gentoo-2-3104d3acd717af1d235c5089d56c5f2fdec4055f.zip |
app-text/dos2unix: Dop old
(Portage version: 2.2.0_alpha166/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
-rw-r--r-- | app-text/dos2unix/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/dos2unix/dos2unix-6.0.2.ebuild | 60 |
2 files changed, 4 insertions, 61 deletions
diff --git a/app-text/dos2unix/ChangeLog b/app-text/dos2unix/ChangeLog index 51b317ffadd6..8818c73fda27 100644 --- a/app-text/dos2unix/ChangeLog +++ b/app-text/dos2unix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/dos2unix # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.133 2013/03/15 15:13:01 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.134 2013/03/16 09:00:32 jlec Exp $ + + 16 Mar 2013; Justin Lecher <jlec@gentoo.org> -dos2unix-6.0.2.ebuild: + Dop old 15 Mar 2013; Jeroen Roovers <jer@gentoo.org> dos2unix-6.0.3.ebuild: Stable for HPPA (bug #461082). diff --git a/app-text/dos2unix/dos2unix-6.0.2.ebuild b/app-text/dos2unix/dos2unix-6.0.2.ebuild deleted file mode 100644 index c48c2350fb8c..000000000000 --- a/app-text/dos2unix/dos2unix-6.0.2.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-6.0.2.ebuild,v 1.12 2013/03/09 02:12:25 radhermit Exp $ - -EAPI=4 - -inherit 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} - nls? ( sys-devel/gettext ) - 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 -} |