blob: 3b372d7a084a630949008b17ec5228c49a6bfcb5 (
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
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/duconv/duconv-1.1.ebuild,v 1.22 2010/01/02 11:15:18 fauli Exp $
inherit toolchain-funcs base
DESCRIPTION="A small util that converts from dos<->unix"
SRC_URI="http://people.freenet.de/tfaehr/${PN}.tgz"
HOMEPAGE="http://people.freenet.de/tfaehr/linux.htm"
LICENSE="as-is"
KEYWORDS="~amd64 mips ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
SLOT="0"
IUSE=""
DEPEND=""
RDEPEND=""
S=${WORKDIR}/home/torsten/gcc/${PN}
PATCHES=( "${FILESDIR}/${P}-gcc43.patch" )
src_compile() {
$(tc-getCXX) ${CXXFLAGS} -Wall -D_GNU_SOURCE ${LDFLAGS} -c -o duconv.o duconv.cc
$(tc-getCXX) ${CXXFLAGS} ${LDFLAGS} -o duconv duconv.o
}
src_install () {
dobin duconv
doman duconv.1
dodoc Changes
}
|