mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
32 lines
685 B
Makefile
32 lines
685 B
Makefile
# New ports collection makefile for: DFileServer
|
|
# Date created: 8 September 2005
|
|
# Whom: Dash|RD
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= DFileServer
|
|
PORTVERSION= 1.1.3
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://harpy.soarwitheagles.net/~dashy/
|
|
|
|
MAINTAINER= dashevil@gmail.com
|
|
COMMENT= A compact webserver designed to make sharing files easy
|
|
|
|
PLIST_FILES= bin/dfileserver
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} 's,g++,${CXX},;s,$$GCCFLAGS,${CXXFLAGS},; \
|
|
s,strip,${STRIP_CMD},' ${WRKSRC}/build.sh
|
|
|
|
do-build:
|
|
@(cd ${WRKSRC}; \
|
|
${SETENV} ${MAKE_ENV} ./build.sh)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/DFileServer.x86 ${PREFIX}/bin/dfileserver
|
|
|
|
.include <bsd.port.mk>
|