blob: 57dec0d5956ec568f2f26ae060501f58693e5e80 (
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
|
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit toolchain-funcs user
DESCRIPTION="A daemon to serve the gopher protocol"
HOMEPAGE="http://git.r-36.net/geomyidae/"
SRC_URI="http://git.r-36.net/geomyidae/snapshot/${P}.tar.bz2"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
pkg_setup(){
enewgroup gopherd
enewuser gopherd -1 -1 /var/gopher gopherd
}
src_prepare() {
# enable verbose build
# drop -O. from CFLAGS
sed -i \
-e 's/@${CC}/${CC}/g' \
-e '/CFLAGS/s/-O. //' \
Makefile || die 'sed on Makefile failed'
# fix for correctly start/stop daemon
# fix path for pid file
sed -i \
-e 's:start-stop-daemon -Sb:start-stop-daemon -Sbm:' \
-e 's:start-stop-daemon -S -p:start-stop-daemon -K -p:' \
-e 's:/var/run:/run:g' \
rc.d/Gentoo.init.d || die
eapply_user
}
src_compile() {
emake CC="$(tc-getCC)"
}
src_install() {
dosbin ${PN}
newinitd rc.d/Gentoo.init.d ${PN}
newconfd rc.d/Gentoo.conf.d ${PN}
insinto /var/gopher
doins index.gph
fowners -R root.gopherd /var/gopher
fperms -R g=rX,o=rX /var/gopher
doman ${PN}.8
dodoc CGI README
}
|