blob: 9f596943a85a58669613014add395069c25a4aab (
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/mail-client/ciphire-mail/ciphire-mail-1.0.0.ebuild,v 1.7 2006/03/03 13:59:35 blubb Exp $
inherit eutils qt3
LOC="/opt/ciphire-mail"
DESCRIPTION="Ciphire Mail is an email encryption tool, operating seamlessly in the background."
HOMEPAGE="http://www.ciphire.com/"
SRC_URI="${P}-linux-i686.tar.gz"
LICENSE="Ciphire"
SLOT="0"
# Do not support amd64 as yet, as we need 64bit support
KEYWORDS="-* -amd64 x86"
RESTRICT="nostrip fetch nomirror"
IUSE="X gnome kde"
DEPEND=
RDEPEND="X? ( virtual/x11 )
x86? ( $(qt_min_version 3.2) )
amd64? ( >=app-emulation/emul-linux-x86-baselibs-2.1.1
X? ( >=app-emulation/emul-linux-x86-xlibs-1.2
>=app-emulation/emul-linux-x86-qtlibs-1.1 ) )"
pkg_nofetch() {
einfo "You need to perform the following steps to install this package:"
einfo " - Go here: https://www.ciphire.com/linux_download.html,"
einfo " - download ${A} and place it in ${DISTDIR}"
einfo " - emerge this package again"
}
pkg_setup() {
if ( [[ -d /usr/local/ciphire ]] || type -p ciphire-ctl &>/dev/null ) && \
! portageq has_version / ciphire-mail ; then
echo
einfo "If you have previously had Ciphire Mail manually installed,"
einfo "please uninstall it first (from dir you installed it):"
echo
einfo " # ./ciphire-uninstall system"
echo
einfo "and then remerge ciphire-mail."
echo
die "Old version of ciphire-mail installed"
fi
check_license Ciphire
}
src_unpack() {
unpack "${A}"
# Do not run 'more' to show the license
sed -i -e 's:more\(.*LICENSE.txt\):echo\1:' \
"${S}/files/setupdata/libciphire.sh"
}
src_install() {
local x=
dodir "${LOC}"
keepdir "${LOC}/updates"
# Do not enable the graphical popups
env -u DISPLAY \
./install-ciphire.sh "${D}${LOC}" <<-EOF
n
yes
y
n
n
EOF
[[ "$?" != 0 ]] && die "install-ciphire.sh failed"
# Revert the change in src_unpack()
dosed -e 's:echo\(.*LICENSE.txt\):more\1:' \
"${LOC}"/setupdata/libciphire.sh
# Fixup $D in setupdata
for x in "${D}${LOC}"/setupdata/*; do
sed -i -e "s:${D}::g" "${x}"
done
# Enable X support
use X && dosed -e 's:^XSUPPORT=.*:XSUPPORT=1:' \
"${LOC}"/setupdata/ciphire.distconfig
cm_make_wrapper ciphire-setup ciphire-setup "${LOC}"
cm_make_wrapper ciphire-ctl ciphire-ctl "${LOC}"
cm_make_wrapper ciphire-msg ciphire-msg "${LOC}"
if use X && ( use gnome || use kde ) ; then
make_desktop_entry ciphire-setup \
"Ciphire Mail User Setup" \
"${LOC}"/data/ciphire32.png \
"Network" \
"${LOC}"
fi
}
pkg_postinst() {
if [[ ${ROOT} == "/" ]] ; then
use X && env -u DISPLAY "${LOC}"/ciphire-systemsetup xreinstall \
|| env -u DISPLAY "${LOC}"/ciphire-systemsetup reinstall
fi
echo
einfo "To setup Ciphire Mail for a user, please run as that user:"
echo
einfo " ${LOC}/ciphire-setup"
echo
einfo "If you have previously had Ciphire Mail manually installed,"
einfo "please uninstall it first (from dir you installed it):"
echo
einfo " # ./ciphire-uninstall system"
echo
einfo "and then remerge ciphire-mail."
echo
}
cm_make_wrapper() {
local wrapper=$1 bin=$2 dir=$3
local tmpwrapper=$(emktemp)
cat << EOF > "${tmpwrapper}"
#!/bin/bash
exec ${dir}/${bin} "\$@"
EOF
chmod go+rx "${tmpwrapper}"
if [[ -n $5 ]] ; then
exeinto "${5}"
newexe "${tmpwrapper}" "${wrapper}"
else
newbin "${tmpwrapper}" "${wrapper}"
fi
}
|