summaryrefslogtreecommitdiff
blob: aebbd655c762974adf3380f85bde502efd2a0d31 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="prefix"

inherit gnustep-2

MY_PN=${PN/gnum/GNUM}

S=${WORKDIR}/${MY_PN}

DESCRIPTION="A fully featured mail application for GNUstep"
HOMEPAGE="http://www.collaboration-world.com/gnumail/"
SRC_URI="http://www.collaboration-world.com/gnumail.data/releases/Stable/${MY_PN}-${PV/_/}.tar.gz"

KEYWORDS="~amd64 ~x86"
LICENSE="GPL-2"
SLOT="0"

IUSE="crypt emoticon xface"
DEPEND="=gnustep-libs/pantomime-${PV}
	>=gnustep-base/gnustep-gui-0.11.0
	gnustep-apps/addresses"
RDEPEND="crypt? ( app-crypt/gnupg )"

src_unpack() {
	unpack ${A}
	cd ${S}

	epatch ${FILESDIR}/${P}-index.patch
	sed -i -e \
		's|$(GNUSTEP_INSTALLATION_DIR)/Library|$(DESTDIR)$(GNUSTEP_SYSTEM_LIBRARY)|' \
		Bundles/*/GNUmakefile || die "gnustep-make-2 sed failed"
}

src_compile() {
	egnustep_env
	egnustep_make

	cd Bundles/Clock
	egnustep_make
	cd ${S}

	if use xface ; then
		cd Bundles/Face
		egnustep_make
		cd ${S}
	fi

	if use crypt ; then
		cd Bundles/PGP
		egnustep_make
		cd ${S}
	fi

	if use emoticon ; then
		cd Bundles/Emoticon
		egnustep_make
		cd ${S}
	fi
}

src_install() {
	gnustep-base_src_install

	cd Bundles/Clock
	egnustep_install || die
	cd ${S}

	if use xface ; then
		cd Bundles/Face
		egnustep_install || die
		cd ${S}
	fi
	if use crypt ; then
		cd Bundles/PGP
		egnustep_install || die
		cd ${S}
	fi
	if use emoticon ; then
		cd Bundles/Emoticon
		egnustep_install || die
		cd ${S}
	fi

	dodoc ${S}/Documentation/*

	# FIX ?
	rm -rf ${D}$(egnustep_install_domain)/Applications/GNUMail.app/Resources/Resources
}