diff options
author | nork <nork@FreeBSD.org> | 2002-05-16 10:25:45 +0000 |
---|---|---|
committer | nork <nork@FreeBSD.org> | 2002-05-16 10:25:45 +0000 |
commit | 566bbaa798d011479ee56f675383124b812f2456 (patch) | |
tree | 003ef29f20fea85dab0264628997cc326548467e | |
parent | 6f7ae93142241aa9fd502225c0fb847338a61af5 (diff) | |
download | FreeBSD-ports-566bbaa798d011479ee56f675383124b812f2456.zip FreeBSD-ports-566bbaa798d011479ee56f675383124b812f2456.tar.gz |
Add new ports.
PR: ports/37661
Submitted by: Alex Dupre <sysadmin@alexdupre.com>
Approved by: knu (mentor)
-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 18d6f12..0e8f326 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 0000000..1cf6939 --- /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> |