1PORTNAME= libcryptui 2PORTVERSION= 3.12.2 3PORTREVISION= 3 4CATEGORIES= security gnome 5MASTER_SITES= GNOME 6DIST_SUBDIR= gnome 7 8MAINTAINER= ports@MidnightBSD.org 9COMMENT= GNOME application for managing encryption keys (PGP, SSH) 10WWW= https://gitlab.gnome.org/GNOME/libcryptui 11 12LICENSE= gpl2 13 14BUILD_DEPENDS= seahorse>=3.0.0:security/seahorse \ 15 gpg:security/gnupg 16LIB_DEPENDS= libgpgme.so:security/gpgme \ 17 libdbus-glib-1.so:devel/dbus-glib \ 18 libgnome-keyring.so:security/libgnome-keyring 19RUN_DEPENDS= seahorse>=3.0.0:security/seahorse \ 20 gpg:security/gnupg 21 22USES= gettext gmake gnome libtool pathfix pkgconfig tar:xz xorg 23USE_GNOME= intlhack gnomeprefix gtk30 introspection:build 24USE_XORG= sm ice 25USE_LDCONFIG= yes 26GNU_CONFIGURE= yes 27CPPFLAGS+= -I${LOCALBASE}/include 28LDFLAGS+= -L${LOCALBASE}/lib 29INSTALL_TARGET= install-strip 30 31GLIB_SCHEMAS= org.gnome.seahorse.recipients.gschema.xml 32 33OPTIONS_DEFINE= NOTIFY 34 35.include <bsd.mport.options.mk> 36 37.if ${PORT_OPTIONS:MNOTIFY} 38LIB_DEPENDS+= libnotify.so:devel/libnotify 39.else 40CONFIGURE_ARGS+=--disable-libnotify 41.endif 42 43post-patch: 44 @${REINPLACE_CMD} -e 's|"1.2 1.4 2.0"|"1.2 1.4 2.0 2.1 2.2 2.3 2.4"|g' \ 45 ${WRKSRC}/configure 46 47.include <bsd.port.mk> 48