blob: 57f24f152557f737819cd25b123696899fcbb89d (
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
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit qt4-r2 eutils cmake-utils user
DESCRIPTION="Intelligent Teaching And Learning with Computers (iTALC) supports working with computers in school"
HOMEPAGE="http://italc.sourceforge.net/"
SRC_URI="mirror://sourceforge/italc/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
RDEPEND="
dev-libs/lzo
dev-libs/openssl
sys-apps/tcp-wrappers
sys-libs/zlib
virtual/jpeg
dev-qt/qtcore:4
dev-qt/qtxmlpatterns:4
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
x11-libs/libXdamage
x11-libs/libXext
x11-libs/libXfixes
x11-libs/libXrandr
x11-libs/libXtst
x11-apps/xinput
dev-qt/qtgui:4"
DEPEND="${RDEPEND}
x11-proto/inputproto"
PROPERTIES="interactive"
PATCHES=( "${FILESDIR}"/${P}-gcc-4.7.patch )
DOCS=( TODO README AUTHORS INSTALL ChangeLog )
pkg_setup() {
enewgroup italc
}
pkg_postinst() {
elog "On the master, please run "
elog "# emerge --config =${CATEGORY}/${PF}"
elog "Please add the logins of master users (teachers) to the italc group by running"
elog "# usermod -a -G italc <loginname>"
echo ""
}
pkg_config() {
if [ ! -d /etc/italc/keys ] ; then
einfo "Creating public and private keys for italc in /etc/italc/keys."
/usr/bin/ica -role teacher -createkeypair > /dev/null
eend $?
einfo "Setting chmod 640 on private keys."
chgrp -R italc /etc/italc
chmod -R o-rwx /etc/italc/keys/private
else
einfo "Not creating new keypair, as /etc/italc/keys already exists"
fi
}
|