56 lines
1.6 KiB
Makefile
56 lines
1.6 KiB
Makefile
# $OpenBSD: Makefile,v 1.9 2014/03/26 18:17:49 ajacoutot Exp $
|
|
|
|
# pinentry builds against it's own stripped version of libassuan
|
|
# I will see with upstream how to change this behavior
|
|
|
|
COMMENT-main = PIN or passphrase entry dialog (ncurses interface)
|
|
COMMENT-gtk2 = PIN or passphrase entry dialog (gtk2 interface)
|
|
|
|
VERSION = 0.8.1
|
|
DISTNAME = pinentry-${VERSION}
|
|
CATEGORIES = security
|
|
|
|
REVISION-main = 1
|
|
REVISION-gtk2 = 1
|
|
PKGNAME-main = ${DISTNAME}
|
|
PKGNAME-gtk2 = pinentry-gtk2-${VERSION}
|
|
|
|
MASTER_SITES = ${MASTER_SITES_GNUPG:=pinentry/}
|
|
|
|
HOMEPAGE = http://www.gnupg.org/related_software/pinentry/index.en.html
|
|
|
|
MAINTAINER = Pierre-Emmanuel Andre <pea@openbsd.org>
|
|
|
|
# GPLv2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MULTI_PACKAGES = -main -gtk2
|
|
|
|
WANTLIB-main = c ncurses ${MODLIBICONV_WANTLIB}
|
|
WANTLIB-gtk2 = ${WANTLIB} c X11 Xcomposite Xcursor Xdamage \
|
|
Xext Xfixes Xi Xinerama Xrandr Xrender atk-1.0 \
|
|
cairo fontconfig freetype gdk-x11-2.0 \
|
|
gdk_pixbuf-2.0 gio-2.0 glib-2.0 \
|
|
gobject-2.0 gtk-x11-2.0 m ncurses \
|
|
pango-1.0 pangocairo-1.0 pangoft2-1.0 \
|
|
pthread z
|
|
LIB_DEPENDS-gtk2 = x11/gtk+2
|
|
|
|
MODULES = devel/gettext converters/libiconv
|
|
|
|
CONFIGURE_STYLE = gnu
|
|
CONFIGURE_ENV = CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
CONFIGURE_ARGS = --enable-pinentry-curses \
|
|
--disable-pinentry-qt \
|
|
--disable-pinentry-qt4 \
|
|
--disable-pinentry-gtk \
|
|
--enable-pinentry-gtk2
|
|
|
|
# Change default 'pinentry' to pinentry-curses in the -main package.
|
|
# The shipped Makefiles insist on setting it to the gtk2 variant.
|
|
post-install:
|
|
ln -sf pinentry-curses ${PREFIX}/bin/pinentry
|
|
|
|
.include <bsd.port.mk>
|