mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
39 lines
1023 B
Makefile
39 lines
1023 B
Makefile
# Created by: Kirill Ponomarew <ponomarew@oberon.net>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gmime
|
|
PORTVERSION= 2.6.23
|
|
CATEGORIES?= mail
|
|
MASTER_SITES= GNOME
|
|
PKGNAMESUFFIX?= 26
|
|
|
|
MAINTAINER?= bofh@FreeBSD.org
|
|
COMMENT?= Library (written in C) for parsing and creating messages using MIME
|
|
|
|
LICENSE= LGPL21
|
|
|
|
LIB_DEPENDS= libgpgme.so:security/gpgme \
|
|
libassuan.so:security/libassuan \
|
|
libgpg-error.so:security/libgpg-error
|
|
|
|
SLAVEDIRS= mail/gmime26-sharp
|
|
|
|
DOCSDIR= ${PREFIX}/share/doc/${PORTNAME}26
|
|
USES= gettext-runtime gmake iconv libtool localbase pathfix pkgconfig tar:xz
|
|
USE_GNOME+= glib20
|
|
USE_LDCONFIG= yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
# www.freebsd.org/cgi/query-pr.cgi?pr=118092
|
|
# Rename uudecode and uuencode to gmime-* to not conflict with userland
|
|
# fix kept in case issue returns
|
|
CONFIGURE_ARGS?=--enable-mono=no \
|
|
--program-transform-name="s/uuencode/gmime-uuencode/;s/uudecode/gmime-uudecode/;"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS =/s/tests//' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|