mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-28 01:06:17 +00:00
27 lines
617 B
Makefile
27 lines
617 B
Makefile
# Created by: Boris Samorodov <bsam@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= lvwimax
|
|
PORTVERSION= 0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= ftp://ftp.wart.ru/pub/download/ \
|
|
${MASTER_SITE_LOCAL}
|
|
|
|
MAINTAINER= bsam@FreeBSD.org
|
|
COMMENT= Userland driver for Samsung WiMAX modems
|
|
|
|
LICENSE= GPLv2
|
|
|
|
USE_RC_SUBR= lvwimax
|
|
|
|
PLIST_FILES= etc/devd/lvwimax.conf sbin/lvwimax
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/etc/devd
|
|
@${SED} -e "s|%%PREFIX%%|${PREFIX}|g" \
|
|
< ${FILESDIR}/lvwimax.conf.in > ${WRKDIR}/lvwimax.conf
|
|
${INSTALL_DATA} "${WRKDIR}/lvwimax.conf" ${STAGEDIR}${PREFIX}/etc/devd
|
|
|
|
.include <bsd.port.mk>
|