blob: 4358ad4e073450208acb3ed30ae731297fcc0258 (
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
34
35
36
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gworkspace/gworkspace-0.7.1.ebuild,v 1.4 2006/01/22 18:41:30 genone Exp $
inherit gnustep
S=${WORKDIR}/${P/gw/GW}
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="pdf"
DEPEND="${GS_DEPEND}
pdf? ( gnustep-libs/pdfkit )
!gnustep-apps/desktop
!gnustep-apps/recycler"
RDEPEND="${GS_RDEPEND}
pdf? ( gnustep-libs/pdfkit )
!gnustep-apps/desktop
!gnustep-apps/recycler"
egnustep_install_domain "System"
src_compile() {
egnustep_env
econf || die "configure failed"
egnustep_make
}
|