39 lines
796 B
Makefile
39 lines
796 B
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= python
|
|
PORTVERSION= 0.11
|
|
CATEGORIES= mail
|
|
MASTER_SITES= http://www.claws-mail.org/downloads/plugins/
|
|
PKGNAMEPREFIX= claws-mail-
|
|
DISTNAME= python_plugin-${PORTVERSION}
|
|
|
|
MAINTAINER= pawel@FreeBSD.org
|
|
COMMENT= Python scripting plugin for Claws Mail
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= claws-mail>=3.9.0:${PORTSDIR}/mail/claws-mail
|
|
RUN_DEPENDS= claws-mail>=3.9.0:${PORTSDIR}/mail/claws-mail
|
|
|
|
USE_GNOME= pygtk2
|
|
USE_GMAKE= yes
|
|
USE_XORG= x11
|
|
USE_AUTOTOOLS= autoconf
|
|
MAKE_JOBS_SAFE= yes
|
|
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|