blob: ffd139affebbd3d3f92f98e66536983ae421cc7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
# Copyright 1999-2004 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.12 2004/06/23 11:31:56 gmsoft Exp $
inherit gcc eutils
DESCRIPTION="UNIX to DOS text file format converter"
HOMEPAGE=""
SRC_URI="mirror://gentoo/${P}.src.tar.gz"
LICENSE="freedist"
SLOT="0"
KEYWORDS="x86 ppc alpha amd64 sparc hppa"
DEPEND=""
RDEPEND=""
S=${WORKDIR}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${PN}-mkstemp.patch
epatch ${FILESDIR}/${P}-segfault.patch
epatch ${FILESDIR}/${P}-manpage.patch
}
src_compile() {
$(gcc-getCC) ${CFLAGS} -o unix2dos unix2dos.c || die
}
src_install() {
dobin unix2dos || die
doman unix2dos.1
}
|