blob: a5d63f4bcecff7cce112c20cfad921b22cac4c63 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-p2p/opendchub/opendchub-0.8.2.ebuild,v 1.3 2015/03/21 20:03:35 jlec Exp $
EAPI=5
inherit autotools eutils
DESCRIPTION="hub software for Direct Connect"
HOMEPAGE="http://opendchub.sf.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc x86"
IUSE="perl"
RDEPEND="perl? ( dev-lang/perl )"
DEPEND="${RDEPEND}"
DOCS="NEWS TODO README AUTHORS Documentation/*"
src_prepare() {
epatch "${FILESDIR}"/${P}-telnet.patch
eautoreconf
}
src_configure() {
use perl || myconf="--disable-perl --enable-switch_user"
econf ${myconf}
}
src_install() {
default
if use perl ; then
dobin "${FILESDIR}"/opendchub_setup.sh
insinto /usr/share/opendchub/scripts
doins Samplescripts/*
fi
}
pkg_postinst() {
if use perl ; then
echo
einfo "To set up perl scripts for opendchub to use, please run"
einfo "opendchub_setup.sh as the user you will be using opendchub as."
echo
fi
}
|