b71a1d488b
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
25 lines
627 B
Makefile
25 lines
627 B
Makefile
# $NetBSD: Makefile,v 1.8 2005/12/05 20:49:52 rillig Exp $
|
|
#
|
|
|
|
DISTNAME= goofey-3.15
|
|
CATEGORIES= chat
|
|
MASTER_SITES= http://redback.spyda.net/~grant/
|
|
EXTRACT_SUFX= .tar.bz2
|
|
|
|
MAINTAINER= grant@NetBSD.org
|
|
HOMEPAGE= http://www.csse.monash.edu.au/~tym/goofey.html
|
|
COMMENT= Text-based client for goofey, a flexible short message system
|
|
|
|
NO_CONFIGURE= yes
|
|
LDFLAGS.SunOS+= -lnsl -lsocket
|
|
|
|
INSTALLATION_DIRS= bin man/man1
|
|
|
|
do-build:
|
|
cd ${WRKSRC}; ${CC} ${CFLAGS} ${LDFLAGS} -o goofey goofey.c
|
|
|
|
do-install:
|
|
${INSTALL} ${WRKSRC}/goofey ${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/goofey.1 ${PREFIX}/man/man1
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|