blob: 3fd28277921ba8245838bae63a75fbd0448d18d5 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/terminal/terminal-0.9.5_pre20060324-r1.ebuild,v 1.2 2007/12/10 10:03:51 voyageur Exp $
inherit gnustep-2
S=${WORKDIR}/${PN/t/T}
DESCRIPTION="A terminal emulator for GNUstep"
HOMEPAGE="http://www.nongnu.org/terminal/"
SRC_URI="mirror://gentoo/${P}.tar.bz2"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
SLOT="0"
src_unpack() {
unpack ${A}
cd "${S}"
# on Solaris -lutil doesn't exist, which hence doesn't provide forkpty
epatch "${FILESDIR}"/${P}-solaris.patch
epatch "${FILESDIR}"/${P}-size_t.patch
epatch "${FILESDIR}"/${P}-gnustep-base1.15.patch
}
|