82be2fc366
Add USES=compiler:c++11-lang to fix build on GCC architectures. Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D20068
59 lines
1.5 KiB
Makefile
59 lines
1.5 KiB
Makefile
# Created by: Hirohisa Yamaguchi <umq@ueo.co.jp>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= milter-manager
|
|
PORTVERSION= 2.1.1
|
|
CATEGORIES= mail ruby
|
|
MASTER_SITES= OSDN/${PORTNAME}/67935
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Super milter that can invoke several milters selectively
|
|
|
|
LICENSE= AGPLv3 GFDL GPLv3 LGPL3
|
|
LICENSE_COMB= multi
|
|
|
|
BROKEN_RUBY24= Build succeeds, but using binary results in segmentation fault
|
|
DEPRECATED= Broken for more than 6 months
|
|
EXPIRATION_DATE= 2019-05-08
|
|
|
|
BUILD_DEPENDS= rubygem-glib2>0:devel/rubygem-glib2
|
|
LIB_DEPENDS= libev.so:devel/libev
|
|
RUN_DEPENDS= rubygem-glib2>0:devel/rubygem-glib2
|
|
|
|
USES= compiler:c++11-lang gettext gmake libtool pathfix pkgconfig
|
|
USE_RC_SUBR= milter-manager
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --with-libev \
|
|
--with-package-platform=freebsd
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LIBS+= -L${LOCALBASE}/lib
|
|
USE_GNOME= glib20 intltool
|
|
USE_LDCONFIG= yes
|
|
USE_RUBY= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= DOCS EXAMPLES
|
|
|
|
PORTDOCS= *
|
|
PORTEXAMPLES= *
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
|
CONFIGURE_ARGS+=--with-html-dir=${DOCSDIR}
|
|
.else
|
|
CONFIGURE_ARGS+=--with-html-dir=${WRKDIR}/doc
|
|
.endif
|
|
|
|
.if ! ${PORT_OPTIONS:MEXAMPLES}
|
|
EXAMPLESDIR= ${WRKDIR}/examples
|
|
.endif
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f -name Makefile.in -exec \
|
|
${REINPLACE_CMD} -e "s#\$$(datadir)/@PACKAGE@#${DATADIR}#" \
|
|
-e "s#\$$(datarootdir)/\$$(PACKAGE)#${DATADIR}#" {} +
|
|
@${REINPLACE_CMD} -e "s#\\\\\$$(pkgdatadir)/sample#${EXAMPLESDIR}#" ${WRKSRC}/configure
|
|
@${RM} -r ${WRKSRC}/binding/ruby/glib-2.2.5
|
|
|
|
.include <bsd.port.mk>
|