blob: 25993512b1e58863565b42a0e445283dbbb2f7aa (
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-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/duhdraw/duhdraw-2.8.13.ebuild,v 1.4 2008/01/26 15:02:22 grobian Exp $
inherit toolchain-funcs eutils
DESCRIPTION="ASCII art editor"
HOMEPAGE="http://www.cs.helsinki.fi/u/penberg/duhdraw"
SRC_URI="http://www.cs.helsinki.fi/u/penberg/duhdraw/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
DEPEND="sys-libs/ncurses"
RDEPEND=${DEPEND}
src_unpack() {
unpack ${A}
epatch "${FILESDIR}"/${P}-macos.patch
epatch "${FILESDIR}"/${P}-prestrip.patch
}
src_compile() {
emake CC="$(tc-getCC) ${CFLAGS}" || die "emake failed"
}
src_install() {
dobin ansi ansitoc duhdraw || die
dodoc CREDITS HISTORY TODO
}
|