mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
58adeeaf7d
This is due to C89 inline semantics being used that cause linker failures when compiled as C99. Feature safe: yes
33 lines
727 B
Makefile
33 lines
727 B
Makefile
# New ports collection makefile for: dancer
|
|
# Date created: 02/01/2003
|
|
# Whom: Dominic Marks <dom@cus.org.uk>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dancer
|
|
PORTVERSION= 4.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= irc
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= IRC bot written in C for UNIX, Windows, and AmigaOS
|
|
|
|
PATCH_WRKSRC= ${WRKDIR}/${DISTNAME}
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/src
|
|
GNU_CONFIGURE= yes
|
|
MAKE_ARGS+= CSPECIAL="${CFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
LDFLAGS+= -lm
|
|
CPP= #
|
|
USE_CSTD= gnu89
|
|
|
|
do-install:
|
|
@${MKDIR} ${DATADIR}
|
|
${INSTALL_PROGRAM} ${WRKSRC}/../${PORTNAME} ${PREFIX}/bin/
|
|
cd ${WRKSRC}/../example && ${INSTALL_DATA} \
|
|
dancer.config dancer.users \
|
|
dancer.funcs dancer.explain ${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|