diff options
author | ade <ade@FreeBSD.org> | 2000-11-18 04:43:34 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-11-18 04:43:34 +0800 |
commit | 1dc449c8968b28bf109481199597c983ca4281ca (patch) | |
tree | 057e2794941b0f37411429b064838273d6a43808 /mail/mahogany/Makefile | |
parent | d3ca4e742df94d84386391a38e719189db25aadd (diff) | |
download | freebsd-ports-gnome-1dc449c8968b28bf109481199597c983ca4281ca.tar.gz freebsd-ports-gnome-1dc449c8968b28bf109481199597c983ca4281ca.tar.zst freebsd-ports-gnome-1dc449c8968b28bf109481199597c983ca4281ca.zip |
Add mahogany, a threaded X11 mail and news client with an
embedded python interpreter.
PR: 22882
Submitted by: S. Kiernan <sk-ports@vegamuse.org>
Diffstat (limited to 'mail/mahogany/Makefile')
-rw-r--r-- | mail/mahogany/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/mail/mahogany/Makefile b/mail/mahogany/Makefile new file mode 100644 index 000000000000..427bea4a6c69 --- /dev/null +++ b/mail/mahogany/Makefile @@ -0,0 +1,39 @@ +# New ports collection makefile for: mahogany +# Date created: 11 November 2000 +# Whom: Stephen Kiernan <sk-ports@vegamuse.org> +# +# $FreeBSD$ +# + +PORTNAME= mahogany +PORTVERSION= 0.60 +CATEGORIES= mail python +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= mahogany + +MAINTAINER= sk-ports@vegamuse.org + +LIB_DEPENDS+= wx_gtk.2:${PORTSDIR}/x11-toolkits/wxgtk +BUILD_DEPENDS+= swig:${PORTSDIR}/devel/SWIG +.if !defined(NOPORTDOCS) +BUILD_DEPENDS+= latex2html:${PORTSDIR}/textproc/latex2html +.endif + +PYTHON_VERSION= python1.5 +USE_AUTOCONF= yes +USE_GMAKE= yes + +INSTALL_TARGET= install_bin install_locale +.if !defined(NOPORTDOCS) +INSTALL_TARGET+= install_doc +.endif + +MAN1= mahogany.1 + +CONFIGURE_ARGS= --with-threads + +post-install: + @strip ${PREFIX}/bin/mahogany + @cat pkg-message + +.include <bsd.port.mk> |