blob: f6c4c90a5a2da3f9080f3a4ac7210abdcc8040d0 (
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-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils toolchain-funcs user
DESCRIPTION="A daemon to serve the gopher protocol"
HOMEPAGE="http://r-36.net/src/geomyidae/"
SRC_URI="http://r-36.net/src/${PN}/${P}.tar.gz"
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'
epatch_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
}
|