blob: 2135b435258c713b49cab91ea8ec4f73e167fb08 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdenetwork/kdenetwork-3.0.1.20020604.ebuild,v 1.2 2002/07/11 06:30:27 drobbins Exp $
inherit kde-patch kde-dist
DESCRIPTION="${DESCRIPTION}Network"
# copied from kde.org.eclass because I'm to lazy to change it, will change sometime though
SRC_PATH="kde/stable/${PV}/src/post-3.0.1-kdenetwork.diff"
SRC_URI="$SRC_URI
ftp://ftp.kde.org/pub/$SRC_PATH
ftp://download.us.kde.org/pub/kde/$SRC_PATH
ftp://download.uk.kde.org/pub/kde/$SRC_PATH
ftp://download.au.kde.org/pub/kde/$SRC_PATH
ftp://download.at.kde.org/pub/kde/$SRC_PATH
ftp://ftp.fh-heilbronn.de/pub/mirrors/$SRC_PATH
ftp://ftp.sourceforge.net/pub/mirrors/$SRC_PATH"
src_unpack() {
cd ${WORKDIR}
unpack ${P}.tar.bz2
cd ${S}
patch -p1 < ${DISTDIR}/post-3.0.1-kdenetwork.diff || die
kde_sandbox_patch ${S}/kppp
}
src_install() {
kde_src_install
chmod +s ${D}/${KDEDIR}/bin/reslisa
# empty config file needed for lisa to work with default settinsg
touch ${D}/etc/lisarc
# lisa, reslisa initscripts
dodir /etc/init.d
sed -e "s:_KDEDIR_:${KDEDIR}:g" ${FILESDIR}/lisa > ${D}/etc/init.d/lisa
sed -e "s:_KDEDIR_:${KDEDIR}:g" ${FILESDIR}/reslisa > ${D}/etc/init.d/reslisa
insinto /etc/conf.d
newins ${FILESDIR}/lisa.conf lisa
newins ${FILESDIR}/reslisa.conf reslisa
}
|