df9e6547d3
- Upgrade to 3.5.6
45 lines
872 B
Makefile
45 lines
872 B
Makefile
# $OpenBSD: Makefile,v 1.5 2001/05/23 17:02:42 shell Exp $
|
|
|
|
COMMENT= "emacs interface to PGP and GnuPG"
|
|
|
|
DISTNAME= mailcrypt-3.5.6
|
|
CATEGORIES= mail
|
|
NEED_VERSION= 1.413
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= mailcrypt
|
|
|
|
HOMEPAGE= http://mailcrypt.sourceforge.net/
|
|
MAINTAINER= Shell Hung <shell@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
CONFIGURE_STYLE= gnu dest
|
|
|
|
FLAVORS= emacs gnupg pgp pgp5 xemacs
|
|
FLAVOR?= emacs gnupg
|
|
|
|
.if ${FLAVOR:L:Memacs}
|
|
BUILD_DEPENDS= emacs::editors/emacs
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mxemacs}
|
|
BUILD_DEPENDS= xemacs::editors/xemacs21
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mgnupg}
|
|
RUN_DEPENDS= gpg::security/gnupg
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mpgp}
|
|
RUN_DEPENDS= pgp::security/pgp
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mpgp5}
|
|
RUN_DEPENDS= pgp5::security/pgp5
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|