diff options
author | Ryan Phillips <rphillips@gentoo.org> | 2002-05-27 01:02:11 +0000 |
---|---|---|
committer | Ryan Phillips <rphillips@gentoo.org> | 2002-05-27 01:02:11 +0000 |
commit | f5a4cb58910b9dbb7a31c077cae93122ffc9525d (patch) | |
tree | 09db9d5549be813292d545146fb4292f82266de6 | |
parent | New Package. Fixes: #2939 (diff) | |
download | gentoo-2-f5a4cb58910b9dbb7a31c077cae93122ffc9525d.tar.gz gentoo-2-f5a4cb58910b9dbb7a31c077cae93122ffc9525d.tar.bz2 gentoo-2-f5a4cb58910b9dbb7a31c077cae93122ffc9525d.zip |
New Package. Fixes #2894
-rw-r--r-- | app-misc/fixdos/ChangeLog | 13 | ||||
-rw-r--r-- | app-misc/fixdos/files/digest-fixdos-1.3.1 | 1 | ||||
-rw-r--r-- | app-misc/fixdos/fixdos-1.3.1.ebuild | 27 |
3 files changed, 41 insertions, 0 deletions
diff --git a/app-misc/fixdos/ChangeLog b/app-misc/fixdos/ChangeLog new file mode 100644 index 000000000000..df5013452223 --- /dev/null +++ b/app-misc/fixdos/ChangeLog @@ -0,0 +1,13 @@ +# ChangeLog for app-misc/fixdos +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL +# $Header: /var/cvsroot/gentoo-x86/app-misc/fixdos/ChangeLog,v 1.1 2002/05/27 01:02:11 rphillips Exp $ + +*fixdos-1.3.1 (26 May 2002) + + 26 May 2002; Ryan Phillips <rphillips@gentoo.org> ChangeLog : + + Added initial ChangeLog which should be updated whenever the package is + updated in any way. This changelog is targetted to users. This means that the + comments should well explained and written in clean English. The details about + writing correct changelogs are explained in the skel.ChangeLog file which you + can find in the root directory of the portage repository. diff --git a/app-misc/fixdos/files/digest-fixdos-1.3.1 b/app-misc/fixdos/files/digest-fixdos-1.3.1 new file mode 100644 index 000000000000..baafea6fee2b --- /dev/null +++ b/app-misc/fixdos/files/digest-fixdos-1.3.1 @@ -0,0 +1 @@ +MD5 e342920c2d367fb41b0e3025868c35b8 fixDos-1.3.1.tar.gz 15119 diff --git a/app-misc/fixdos/fixdos-1.3.1.ebuild b/app-misc/fixdos/fixdos-1.3.1.ebuild new file mode 100644 index 000000000000..903e573f42c5 --- /dev/null +++ b/app-misc/fixdos/fixdos-1.3.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/fixdos/fixdos-1.3.1.ebuild,v 1.1 2002/05/27 01:02:11 rphillips Exp $ + +DESCRIPTION="Set of utilities such as crlf which converts files between UNIX and DOS newlines." +HOMEPAGE="http://e.co.za/marius/" +LICENSE="GPL-2" +DEPEND="virtual/glibc" +SRC_URI="http://e.co.za/marius/downloads/misc/fixDos-${PV}.tar.gz" +S=${WORKDIR}/fixDos-${PV} + +src_unpack() { + unpack ${A} + + cd ${S} + # Apply this patch to the makefile so that it builds with our + # desired CFLAGS. + patch < ${FILESDIR}/${P}-gentoo-makefile.diff +} + +src_compile() { + emake || die +} + +src_install () { + make INSTALLDIR=${D}/usr/bin install || die +} |