diff options
-rw-r--r-- | net/Makefile | 1 | ||||
-rw-r--r-- | net/lmd/Makefile | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/net/Makefile b/net/Makefile index 18d6f12fca68..0e8f3262f417 100644 --- a/net/Makefile +++ b/net/Makefile @@ -231,6 +231,7 @@ SUBDIR += linpopup SUBDIR += linux-edonkey-server SUBDIR += lla + SUBDIR += lmd SUBDIR += macipgw SUBDIR += maradns SUBDIR += mars_nwe diff --git a/net/lmd/Makefile b/net/lmd/Makefile new file mode 100644 index 000000000000..1cf69392eec3 --- /dev/null +++ b/net/lmd/Makefile @@ -0,0 +1,42 @@ +# New ports collection makefile for: lmd +# Date created: Thu May 2 11:20:06 CET 2002 +# Whom: Alex Dupre <sysadmin@alexdupre.com> +# +# $FreeBSD$ +# + +PORTNAME= lmd +PORTVERSION= 0.8 +CATEGORIES= net sysutils +MASTER_SITES= http://www.bsdshell.net/download/ + +MAINTAINER= sysadmin@alexdupre.com + +MODULES= ldd_http_module.so +DOCS= INSTALL LICENSE README +PKGMESSAGE= ${WRKDIR}/pkg-message + +MAKE_ENV+= CPPFLAGS="-DPREFIX=\\\"${PREFIX}\\\"" + +post-build: + @${SED} 's,%PREFIX%,${PREFIX},g' ${.CURDIR}/pkg-message.in \ + > ${WRKDIR}/pkg-message + +do-install: + @${ECHO_CMD} "Installing files..." + @${INSTALL_PROGRAM} ${WRKSRC}/lmd ${PREFIX}/sbin/lmd + @${INSTALL_DATA} ${WRKSRC}/lmd.conf ${PREFIX}/etc/lmd.conf.sample +.for f in ${MODULES} + @${INSTALL_DATA} ${WRKSRC}/modules_check/${f} ${PREFIX}/lib/ +.endfor + @${CAT} ${PKGMESSAGE} + +.if !defined(NOPORTDOCS) +post-install: + @${MKDIR} ${DOCSDIR} +.for f in ${DOCS} + @${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} +.endfor +.endif + +.include <bsd.port.mk> |