openbsd-ports/security/crank/Makefile
obecian f2a9c9cdfe crank-0.1.3 update
o transposition.grid-controls added (rectangular grid transposition
  ciphers)
o steganalysis.word-gaps added (hidden cipher breaker)
o Various cosmetic changes
o Made source pane editable updating view pane dynamically. Got rid of
  old "edit source" option.
o Moved hillclimb-cracker's progress bar onto widget display
o Description area in plugin-viewer
o Plugins share variables by not using 'static'
o New plugin->menu_string and menu items
o Added optional source pane to make the source/view idea more obvious
2001-07-25 04:20:17 +00:00

40 lines
1.0 KiB
Makefile

# $OpenBSD: Makefile,v 1.4 2001/07/25 04:20:17 obecian Exp $
COMMENT= "classical (pen-and-paper) cipher cryptanalysis toolkit"
DISTNAME= crank-0.1.3
CATEGORIES= security
NEED_VERSION= 1.364
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= crank
HOMEPAGE= http://crank.sourceforge.net/
LIB_DEPENDS= gtk.1.2::x11/gtk+
MAINTAINER= Mark Grimes <obecian@openbsd.org>
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
USE_GMAKE= Yes
ALL_TARGET= all
DOC= BUGS HISTORY LICENSE README ciphertext.txt
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/crank ${PREFIX}/bin
${INSTALL_DATA_DIR} ${PREFIX}/share/crank
${INSTALL_DATA_DIR} ${PREFIX}/share/crank/data
${INSTALL_DATA_DIR} ${PREFIX}/share/crank/plugins
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/crank
${INSTALL_DATA} ${WRKSRC}/data/*.dat ${PREFIX}/share/crank/data
${INSTALL_DATA} ${WRKSRC}/plugin-src/*.so ${PREFIX}/share/crank/plugins
.for file in ${DOC}
@ ${INSTALL_DATA} ${WRKSRC}/${file} ${PREFIX}/share/doc/crank
.endfor
.include <bsd.port.mk>