diff options
author | 2011-04-26 23:10:48 +0000 | |
---|---|---|
committer | 2011-04-26 23:10:48 +0000 | |
commit | 1e013a4e4478274f0abdb460a3bfd5e5e0ce62d7 (patch) | |
tree | d30d4de5db8b227712cca2bdac4d8d213525776d /app-text | |
parent | Version bump (diff) | |
download | gentoo-2-1e013a4e4478274f0abdb460a3bfd5e5e0ce62d7.tar.gz gentoo-2-1e013a4e4478274f0abdb460a3bfd5e5e0ce62d7.tar.bz2 gentoo-2-1e013a4e4478274f0abdb460a3bfd5e5e0ce62d7.zip |
Version bump
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/dos2unix/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/dos2unix/dos2unix-5.3.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/app-text/dos2unix/ChangeLog b/app-text/dos2unix/ChangeLog index 9580156eaa18..a01f505c295c 100644 --- a/app-text/dos2unix/ChangeLog +++ b/app-text/dos2unix/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/dos2unix # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.66 2011/03/27 21:55:05 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/ChangeLog,v 1.67 2011/04/26 23:10:48 polynomial-c Exp $ + +*dos2unix-5.3 (26 Apr 2011) + + 26 Apr 2011; Lars Wendler <polynomial-c@gentoo.org> +dos2unix-5.3.ebuild: + non-maintainer commit: version bump. 27 Mar 2011; Jeremy Olexa <darkside@gentoo.org> -dos2unix-5.1.ebuild, -dos2unix-5.2.ebuild: diff --git a/app-text/dos2unix/dos2unix-5.3.ebuild b/app-text/dos2unix/dos2unix-5.3.ebuild new file mode 100644 index 000000000000..b29e42b86bcf --- /dev/null +++ b/app-text/dos2unix/dos2unix-5.3.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/dos2unix/dos2unix-5.3.ebuild,v 1.1 2011/04/26 23:10:48 polynomial-c Exp $ + +EAPI="3" + +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 "${S}"/Makefile || die + tc-export CC + use debug && sed "/DEBUG/s:0:1:g" -i Makefile +} + +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=") \ + || die +} + +src_install() { + emake DESTDIR="${D}" prefix="${EPREFIX}/usr" \ + $(use nls || echo "ENABLE_NLS=") install \ + || die "emake install failed" +} |