blob: 62bad169efc242ae555da501571dfafde40ab861 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/middleman/middleman-2.0.1.ebuild,v 1.3 2004/07/01 22:45:06 eradicator Exp $
inherit eutils
DESCRIPTION="Advanced HTTP/1.1 proxy server with features designed to increase privacy and remove unwanted content"
SRC_URI="mirror://sourceforge/middle-man/${P}.tar.gz"
HOMEPAGE="http://sourceforge.net/projects/middle-man"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE="${IUSE} pam zlib"
#S=${WORKDIR}/
DEPEND="virtual/libc
dev-libs/libpcre
pam? ( sys-libs/pam )
zlib? ( sys-libs/zlib )
"
src_unpack() {
unpack ${A}
[ -f ${FILESDIR}/${P}-gentoo.diff ] && epatch ${FILESDIR}/${P}-gentoo.diff
cd ${S}
#if [ "$PV" = "1.9" ]; then
# einfo "Patching Makefile.in to avoid sandbox problems"
# sed -i -e s:"INSTALL) -d /var":"INSTALL) -d \$(DESTDIR)/var":g Makefile.in
#fi
}
src_compile() {
local myconf=""
MAKEOPTS="-j1"
cd ${S}
for opt in ${IUSE}; do
use ${opt} &&
myconf="${myconf} --enable-${opt}" ||
myconf="$myconf --disable-${opt}"
done
econf --sysconfdir=/etc/mman ${myconf} || die "econf failed: ${myconf}"
emake || die "emake failed"
}
src_install() {
cd ${S}
# mkdir -p ${D}/usr/share/man/man8/
make DESTDIR="${D}" install || die "einstall failed"
dodoc CHANGELOG COPYING
dohtml README.html
insinto /etc/conf.d
newins ${FILESDIR}/conf.d/mman mman
exeinto /etc/init.d
newexe ${FILESDIR}/init.d/mman mman
}
#pkg_preinst() {
# enewgroup mman 8080
# enewuser mman 8080
#}
pkg_postinst() {
#einfo "A mman user has been added to your system if one did not already exist"
einfo "-"
einfo "Note: init/conf scripts and a sample config has been provided for you."
einfo "They can be found at or in /etc/conf.d/mman /etc/init.d/mman /etc/mman/"
}
|