blob: b4e1297b1adf52b3e1f2284b273004abc516a5dc (
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: $
inherit eutils distutils
DESCRIPTION="A python library of kolab related scripts "
HOMEPAGE="http://projects.gunnarwrobel.de/scripts"
SRC_URI="http://dev.gentoo.org/~wrobel/${PN}/${PF}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
S=${WORKDIR}/${PF}
DEPEND="dev-python/pardus"
# src_test() {
# cd ${S}
# einfo "Running ${PN} doctests..."
# if ! PYTHONPATH="." ${python} ${PN}/tests/dtest.py; then
# eerror "DocTests failed - please submit a bug report"
# die "DocTesting failed!"
# fi
# }
src_install() {
distutils_src_install
# Going to backup to this directory
keepdir /var/backup/imapd/spool
keepdir /var/backup/imapd/extra
keepdir /var/backup/imapd/config
}
|