56 lines
1.1 KiB
Bash
56 lines
1.1 KiB
Bash
# 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
|
|
}
|