diff options
author | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-08 05:42:43 +0000 |
---|---|---|
committer | Edwin Groothuis <edwin@FreeBSD.org> | 2007-09-08 05:42:43 +0000 |
commit | e0f850f496bb3ee288cb8a0db8ed6c77c41eec81 (patch) | |
tree | 3295e9e4c201c234fda1bb2f466eecf44efc6817 /net/csocks/Makefile | |
parent | 4dd7a5be3309d342aa30233fc9b855ecd49ce634 (diff) | |
download | ports-e0f850f496bb3ee288cb8a0db8ed6c77c41eec81.tar.gz ports-e0f850f496bb3ee288cb8a0db8ed6c77c41eec81.zip |
Notes
Diffstat (limited to 'net/csocks/Makefile')
-rw-r--r-- | net/csocks/Makefile | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/net/csocks/Makefile b/net/csocks/Makefile new file mode 100644 index 000000000000..e638d6244952 --- /dev/null +++ b/net/csocks/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: csocks +# Date created: 06 August 2007 +# Whom: Raffaele De Lorenzo - raffaele.delorenzo@libero.it +# $FreeBSD$ + +PORTNAME= csocks +PORTVERSION= 1.0 +CATEGORIES= net security +MASTER_SITES= http://csocks.virtuale.org/download/ \ + http://csocks.altervista.org/download/ +DISTNAME= ${PORTNAME}_${PORTVERSION} + +MAINTAINER= raffaele.delorenzo@libero.it +COMMENT= SOCKS Client v4/v5 RFC Compliant with many features + +ONLY_FOR_ARCHS= i386 + +PLIST_FILES= etc/csocks.conf lib/libcsocks.so lib/libcsocks.so.1 bin/csocks + +NO_BUILD= yes +WRKSRC= ${WRKDIR}/${DISTNAME} +USE_LDCONFIG= yes +MAN1= csocks.1 +MAN5= csocks.conf.5 +MANCOMPRESSED= yes + +do-install: + ${CP} -p ${WRKDIR}/${DISTNAME}/freebsd/libcsocks.so.1 ${PREFIX}/lib/ + ${LN} -fs ${PREFIX}/lib/libcsocks.so.1 ${PREFIX}/lib/libcsocks.so + ${CP} -p ${WRKDIR}/${DISTNAME}/freebsd/csocks ${PREFIX}/bin + ${CP} -p ${WRKDIR}/${DISTNAME}/freebsd/csocks.conf ${PREFIX}/etc/ + ${CP} -p ${WRKDIR}/${DISTNAME}/man/csocks.1.gz ${MANPREFIX}/man/man1 + ${CP} -p ${WRKDIR}/${DISTNAME}/man/csocks.conf.5.gz ${MANPREFIX}/man/man5 +.include <bsd.port.mk> |