summaryrefslogtreecommitdiff
path: root/security/snow/Makefile
diff options
context:
space:
mode:
authoragc <agc@pkgsrc.org>2007-10-29 09:57:28 +0000
committeragc <agc@pkgsrc.org>2007-10-29 09:57:28 +0000
commit98df338ce11bc6e56d0149d82b825f9586ae2021 (patch)
treef239990324b12a56ac387207329a6600a7fa41df /security/snow/Makefile
parent0c78e2bcb9a536a8297439ce84a85910f8d508bc (diff)
downloadpkgsrc-98df338ce11bc6e56d0149d82b825f9586ae2021.tar.gz
Initial import of snow-20060213 into the Packages Collection.
Whitespace steganography The program snow is used to conceal messages in ASCII text by appending whitespace to the end of lines. Because spaces and tabs are generally not visible in text viewers, the message is effectively hidden from casual observers. And if the built-in encryption is used, the message cannot be read even if it is detected. What's in a name? snow exploits the steganographic nature of whitespace. Locating trailing whitespace in text is like finding a polar bear in a snowstorm (which, by the way, explains the logo). And it uses the ICE encryption algorithm, so the name is thematically consistent.
Diffstat (limited to 'security/snow/Makefile')
-rw-r--r--security/snow/Makefile22
1 files changed, 22 insertions, 0 deletions
diff --git a/security/snow/Makefile b/security/snow/Makefile
new file mode 100644
index 00000000000..faad46b5fec
--- /dev/null
+++ b/security/snow/Makefile
@@ -0,0 +1,22 @@
+# $NetBSD: Makefile,v 1.1.1.1 2007/10/29 09:57:28 agc Exp $
+
+DISTNAME= snow
+PKGNAME= snow-20060213
+CATEGORIES= security
+MASTER_SITES= http://www.darkside.com.au/snow/
+
+MAINTAINER= agc@NetBSD.org
+HOMEPAGE= http://www.darkside.com.au/snow/index.html
+COMMENT= Whitespace steganography program
+
+WRKSRC= ${WRKDIR}/snow
+BUILD_TARGET= snow
+PKG_DESTDIR_SUPPORT= user-destdir
+
+INSTALLATION_DIRS= bin ${PKGMANDIR}/man1
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/snow ${DESTDIR}${PREFIX}/bin/snow
+ ${INSTALL_MAN} ${WRKSRC}/snow.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1/snow.1
+
+.include "../../mk/bsd.pkg.mk"