46ce5f763a
===> Building for rblcheck-1.4 cc -O -pipe -Wall -s rblcheck.c -o rblcheck rblcheck.c: In function `main': rblcheck.c:333: warning: implicit declaration of function `getopt' rblcheck.c:351: `optarg' undeclared (first use this function) rblcheck.c:351: (Each undeclared identifier is reported only once rblcheck.c:351: for each function it appears in.) rblcheck.c:383: warning: suggest parentheses around assignment used as truth value *** Error code 1
30 lines
638 B
Makefile
30 lines
638 B
Makefile
# New ports collection makefile for: rblcheck
|
|
# Version required: 1.4
|
|
# Date created: 28 January 1998
|
|
# Whom: itojun@itojun.org
|
|
#
|
|
# $Id: Makefile,v 1.3 1998/10/19 16:51:12 itojun Exp $
|
|
#
|
|
|
|
DISTNAME= rblcheck-1.4
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.xnet.com/%7Eemarshal/rblcheck/
|
|
|
|
MAINTAINER= itojun@itojun.org
|
|
|
|
BROKEN= yes
|
|
|
|
DOCS= BUGS CHANGES CREDITS INSTALL PLATFORMS TODO
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rblcheck ${PREFIX}/bin
|
|
.if !defined(NOPORTDOCS)
|
|
dst=${PREFIX}/share/doc/rblcheck; \
|
|
${MKDIR} $$dst; \
|
|
for i in ${DOCS}; do \
|
|
${INSTALL_DATA} ${WRKSRC}/docs/$$i $$dst; \
|
|
done
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|