diff options
author | 2002-12-01 06:03:15 +0000 | |
---|---|---|
committer | 2002-12-01 06:03:15 +0000 | |
commit | f19f7869e466855122ff7fb15cd5881112025977 (patch) | |
tree | 954b47019ec231df4931ef2e124a8fa66f697223 /app-text/unix2dos/unix2dos-2.2.ebuild | |
parent | initial ebuild #11242 (diff) | |
download | gentoo-2-f19f7869e466855122ff7fb15cd5881112025977.tar.gz gentoo-2-f19f7869e466855122ff7fb15cd5881112025977.tar.bz2 gentoo-2-f19f7869e466855122ff7fb15cd5881112025977.zip |
initial ebuild #11242
Diffstat (limited to 'app-text/unix2dos/unix2dos-2.2.ebuild')
-rw-r--r-- | app-text/unix2dos/unix2dos-2.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/app-text/unix2dos/unix2dos-2.2.ebuild b/app-text/unix2dos/unix2dos-2.2.ebuild new file mode 100644 index 000000000000..b2f9a99878cf --- /dev/null +++ b/app-text/unix2dos/unix2dos-2.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/unix2dos/unix2dos-2.2.ebuild,v 1.1 2002/12/01 06:03:15 vapier Exp $ + +DESCRIPTION="unix2dos - UNIX to DOS text file format converter" +HOMEPAGE="" +SRC_URI="mirror://gentoo/${P}.src.tar.gz" + +LICENSE="freedist" +SLOT="0" +KEYWORDS="x86" + +DEPEND="" +RDEPEND="!app-text/hd2u" + +S=${WORKDIR} + +src_unpack() { + unpack ${A} + patch -p1 < ${FILESDIR}/${PN}-mkstemp.patch || die + patch -p1 < ${FILESDIR}/${P}-segfault.patch || die + patch -p1 < ${FILESDIR}/${P}-manpage.patch || die +} + +src_compile() { + gcc ${CFLAGS} -o unix2dos unix2dos.c || die +} + +src_install() { + dobin unix2dos + doman unix2dos.1 +} |