mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-29 01:13:08 +00:00
85dce6ad8f
- Add LICENSE - Use @sample in pkg-plist Approved by: portmgr (blanket approval)
27 lines
524 B
Makefile
27 lines
524 B
Makefile
# Created by: ijliao
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gofish
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= net
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= kaiw27@gmail.com
|
|
COMMENT= GoFish Gopher Server
|
|
|
|
LICENSE= GPLv2
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
GOPHERROOT?= ${PREFIX}/gopher
|
|
GOPHERUSER?= nobody
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-gopherroot=${GOPHERROOT} \
|
|
--with-gopheruser=${GOPHERUSER}
|
|
MAKE_ENV= localstatedir=/var
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e '/$$(sysconfdir)\/gofish/s|.conf|.conf.sample|3' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|