blob: 95eb7fc0e910035ebed72d420f162eef27c7d13f (
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
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/gnustep-apps/gemas/gemas-0.4.ebuild,v 1.1 2014/02/10 10:02:18 voyageur Exp $
EAPI=5
inherit eutils gnustep-2
MY_P=${P/g/G}
DESCRIPTION="a simple code editor for GNUstep"
HOMEPAGE="http://wiki.gnustep.org/index.php/Gemas.app"
SRC_URI="http://download.gna.org/gnustep-nonfsf/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="projectcenter"
DEPEND=">=gnustep-libs/highlighterkit-0.1.2
>=virtual/gnustep-back-0.22.0
projectcenter? ( gnustep-apps/projectcenter )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-bundle_makefile.patch
}
src_compile() {
gnustep-base_src_compile
if use projectcenter;
then
cd Bundle/Gemas || die "compile cd failed"
egnustep_make
fi
}
src_install() {
gnustep-base_src_install
if use projectcenter;
then
cd Bundle/Gemas || die "install cd failed"
egnustep_install
fi
}
|