blob: df879a8b25ffe0a3defe93ab2ab2fc5260ff14c0 (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/proxyper/proxyper-341a.ebuild,v 1.7 2008/10/10 10:48:39 flameeyes Exp $
DESCRIPTION="distributed.net personal proxy"
HOMEPAGE="http://www.distributed.net"
SRC_URI="http://http.distributed.net/pub/dcti/${PN}/${PN}${PV}-linux-x86-uclibc.tar.gz"
LICENSE="distributed.net"
SLOT="0"
KEYWORDS="-alpha -ppc -sparc x86"
IUSE=""
DEPEND=""
RDEPEND="net-dns/host"
S="${WORKDIR}/${PN}${PV}-linux-x86-uclibc"
RESTRICT="mirror strip"
src_install() {
local DESTDIR="/opt/proxyper"
exeinto ${DESTDIR} ; doexe proxyper
# don't clobber an already existing ini file!
insinto ${DESTDIR}
if [ ! -f ${DESTDIR}/proxyper.ini ]
then
doins proxyper.ini
else
newins ${DESTDIR}/proxyper.ini proxyper.ini
fi
dodoc ChangeLog.txt
dohtml manual.html
newinitd ${FILESDIR}/proxyper.init proxyper
}
pkg_postinst() {
einfo "Don't forget to modify the config file"
einfo "located in /opt/proxyper/proxyper.ini"
einfo "It's recommend to reading the manual first :-)"
}
pkg_postrm() {
local DESTDIR="/opt/proxyper"
if [ -d ${DESTDIR} ]; then
einfo "All files have not been removed from ${DESTDIR}"
fi
}
|