blob: ae9db89b4196d88f72745394952de4e23b694db0 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.7.0.ebuild,v 1.1 2005/03/17 20:58:27 fafhrd Exp $
inherit gnustep
S=${WORKDIR}/${PN}
DESCRIPTION="A workspace manager for GNUstep."
HOMEPAGE="http://www.gnustep.it/enrico/gworkspace/"
SRC_URI="http://www.gnustep.it/enrico/gworkspace/${P}.tar.gz"
KEYWORDS="~ppc ~x86"
LICENSE="GPL-2"
SLOT="0"
IUSE="${IUSE} pdfkit"
DEPEND="${GS_DEPEND}
pdfkit? ( gnustep-libs/pdfkit )
!gnustep-apps/desktop
!gnustep-apps/recycler"
RDEPEND="${GS_RDEPEND}"
egnustep_install_domain "System"
src_compile() {
egnustep_env
econf || die "configure failed"
egnustep_make
}
|