pkgsrc-wip/libotr/buildlink3.mk
Greg Troxel 021ea4283e Off-the-Record (OTR) Messaging allows you to have private
conversations over instant messaging by providing:

Encryption
  No one else can read your instant messages. 
Authentication
  You are assured the correspondent is who you think it is. 
Deniability
  The messages you send do not have digital signatures that are
  checkable by a third party. Anyone can forge messages after a
  conversation to make them look like they came from you. However,
  during a conversation, your correspondent is assured the messages he
  sees are authentic and unmodified.
Perfect forward secrecy
  If you lose control of your private keys, no previous conversation
  is compromised.
2005-02-26 14:56:33 +00:00

21 lines
609 B
Makefile

# $NetBSD: buildlink3.mk,v 1.1.1.1 2005/02/26 14:56:33 lexort Exp $
#
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH}+
LIBOTR_BUILDLINK3_MK:= ${LIBOTR_BUILDLINK3_MK}+
.if !empty(BUILDLINK_DEPTH:M+)
BUILDLINK_DEPENDS+= libotr
.endif
BUILDLINK_PACKAGES:= ${BUILDLINK_PACKAGES:Nlibotr}
BUILDLINK_PACKAGES+= libotr
.if !empty(LIBOTR_BUILDLINK3_MK:M+)
BUILDLINK_DEPENDS.libotr+= libotr>=2.0.1
BUILDLINK_PKGSRCDIR.libotr?= ../../wip/libotr
.endif # LIBOTR_BUILDLINK3_MK
.include "../../security/libgpg-error/buildlink3.mk"
.include "../../security/libgcrypt/buildlink3.mk"
BUILDLINK_DEPTH:= ${BUILDLINK_DEPTH:S/+$//}