blob: 8242b0ad63a9876784a3f22d4ecafceef2018ffb (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-proxy/ntlmaps/ntlmaps-0.9.9.ebuild,v 1.1 2005/04/22 19:15:11 mrness Exp $
inherit eutils
DESCRIPTION="NTLM proxy Authentication against MS proxy/web server"
HOMEPAGE="http://ntlmaps.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~arm ~hppa ~ia64 ~ppc ~s390 ~x86 ~ppc64 ~amd64"
IUSE=""
DEPEND="dev-lang/python"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.patch
sed -i -e 's/\r//' server.cfg *.txt doc/*.txt # stupid windoze style
}
src_install() {
# exes ------------------------------------------------------------------
exeinto /usr/bin
newexe main.py ${PN} || die
insinto /usr/lib/${PN}
doins lib/* || die
# doc -------------------------------------------------------------------
dodoc *.txt doc/*.txt
dohtml doc/*
# conf ------------------------------------------------------------------
insinto /etc/${PN}
doins server.cfg
newinitd ${FILESDIR}/${PN}.init ${PN}
}
pkg_prerm() {
einfo "Removing init script and python compiled bytecode"
rm -f /usr/lib/${PN}/*.py?
rm -f /etc/init.d/${PN}
}
|