diff options
author | vanilla <vanilla@FreeBSD.org> | 2001-01-14 20:41:02 +0000 |
---|---|---|
committer | vanilla <vanilla@FreeBSD.org> | 2001-01-14 20:41:02 +0000 |
commit | ad409c4232c2175a8bc0b61405159e128c5e7bd6 (patch) | |
tree | 4b6b5cf11a84d9279be5f5793a21517cd57f814e /net/icb/Makefile | |
parent | e62459f51ba2b411bc9d9affce1d8f49d659088f (diff) | |
download | FreeBSD-ports-ad409c4232c2175a8bc0b61405159e128c5e7bd6.zip FreeBSD-ports-ad409c4232c2175a8bc0b61405159e128c5e7bd6.tar.gz |
- BUILD_DEPENDS -> LIB_DEPENDS
- Sort pkg-plist
- Add WWW: line
PR: ports/24287
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'net/icb/Makefile')
-rw-r--r-- | net/icb/Makefile | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/net/icb/Makefile b/net/icb/Makefile index 9fef789..bfd936a 100644 --- a/net/icb/Makefile +++ b/net/icb/Makefile @@ -8,26 +8,26 @@ PORTNAME= icb PORTVERSION= 5.1.0 -CATEGORIES= net -MASTER_SITES= http://ftp.obfuscation.org/ftp/pub/icb/ \ +PORTREVISION= 1 +CATEGORIES= net tcl82 +MASTER_SITES= http://www.obfuscation.org/ftp/pub/icb/ \ ftp://ftp.obfuscation.org/pub/icb/ -DISTNAME= cicb-${PORTVERSION} +DISTNAME= c${PORTNAME}-${PORTVERSION} MAINTAINER= ports@FreeBSD.org -BUILD_DEPENDS= tclsh8.3:${PORTSDIR}/lang/tcl83 +LIB_DEPENDS= tcl82.1:${PORTSDIR}/lang/tcl82 GNU_CONFIGURE= yes +CONFIGURE_ARGS= --with-tclinclude=${LOCALBASE}/include/tcl8.2 \ + --with-tcllib=${LOCALBASE}/lib do-install: ${INSTALL_PROGRAM} ${WRKSRC}/icb/icb ${PREFIX}/bin - ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ - ${PREFIX}/share/icb + @${MKDIR} ${PREFIX}/share/icb ${INSTALL_DATA} ${WRKSRC}/icbserverdb ${PREFIX}/share/icb - ${INSTALL_DATA} ${WRKSRC}/contrib/sample.icbrc \ - ${WRKSRC}/contrib/bartender \ - ${WRKSRC}/contrib/confuse \ - ${WRKSRC}/contrib/echofunctions \ - ${PREFIX}/share/icb +.for file in bartender confuse echofunctions sample.icbrc + ${INSTALL_DATA} ${WRKSRC}/contrib/${file} ${PREFIX}/share/icb +.endfor .include <bsd.port.mk> |