a0a1f2e57c
COMMENT should not be longer than 70 characters. COMMENT should not begin with 'A'. COMMENT should not begin with 'An'. COMMENT should not begin with 'a'. COMMENT should not end with a period. COMMENT should start with a capital letter. pkglint warnings. Some files also got minor formatting, spelling, and style corrections.
24 lines
716 B
Makefile
24 lines
716 B
Makefile
# $NetBSD: Makefile,v 1.18 2013/04/06 03:45:21 rodent Exp $
|
|
|
|
DISTNAME= pppoe.20000912
|
|
PKGNAME= mouse-${DISTNAME:S/./-/}
|
|
PKGREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://sparkle.rodents.montreal.qc.ca/pub/mouse/ftp.netbsd.org/pppoe/
|
|
|
|
MAINTAINER= mouse@NetBSD.org
|
|
COMMENT= PPP over Ethernet program by der Mouse
|
|
|
|
NOT_FOR_PLATFORM= Interix-*-* # no userland protocol stack support
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
INSTALLATION_DIRS= sbin share/doc/mouse_pppoe
|
|
|
|
do-build:
|
|
(cd ${WRKSRC} ; ${CC} ${CFLAGS} -o pppoe pppoe.c)
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/pppoe ${DESTDIR}${PREFIX}/sbin/mouse-pppoe
|
|
${INSTALL_DATA} ${WRKSRC}/pppoe.readme ${DESTDIR}${PREFIX}/share/doc/mouse_pppoe
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|