blob: ac168fcf195ebd5e063f0f401bf80dda8e4f2c5f (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Ulrich Eck
# $Header: /home/cvsroot/gentoo-x86/app-misc/screen.ebuild,v 1.2 2001/04/21
# 19:25 CST blutgens Exp $
#P=
A=${PN}.tgz
S=${WORKDIR}/${P}
DESCRIPTION=" small util that converts from dos<->unix"
SRC_URI="http://people.freenet.de/tfaehr/${PN}.tgz"
HOMEPAGE="http://people.freenet.de/tfaehr/linux.htm"
src_unpack() {
unpack ${A}
mv ${WORKDIR}/home/torsten/gcc/duconv ${WORKDIR}/${P}
rm -R ${WORKDIR}/home
}
src_compile() {
try make all
}
src_install () {
exeinto /usr/bin
doexe ${PN}
doman duconv.1
}
|