Changes: spass can now use one of three audio backends (the old version could only use OSS): Advanced Linux Sound Architecture (ALSA) Open Sound System (OSS) PortAudio
29 lines
724 B
Makefile
29 lines
724 B
Makefile
# New ports collection makefile for: spass
|
|
# Date created: 27 October 2010
|
|
# Whom: Eitan Adler <eadler@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= spass
|
|
PORTVERSION= 3.0
|
|
CATEGORIES= security
|
|
MASTER_SITES= http://cloud.github.com/downloads/guyru/spass/
|
|
DISTFILES= ${DISTNAME}.tar.bz2
|
|
|
|
MAINTAINER= eadler@FreeBSD.org
|
|
COMMENT= A secure password generator with a true random number generator
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/boost/format.hpp:${PORTSDIR}/devel/boost-libs
|
|
LIB_DEPENDS= asound:${PORTSDIR}/audio/alsa-lib \
|
|
boost_program_options:${PORTSDIR}/devel/boost-libs
|
|
|
|
USE_CMAKE= yes
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
PLIST_FILES= bin/spass
|
|
|
|
.include <bsd.port.mk>
|