57 lines
1.4 KiB
Makefile
57 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.56 2011/09/12 07:28:53 jasper Exp $
|
|
|
|
COMMENT= password agent for the GNOME project
|
|
|
|
GNOME_PROJECT= gnome-keyring
|
|
GNOME_VERSION= 3.0.3
|
|
|
|
REVISION= 2
|
|
|
|
SHARED_LIBS += gck 0.0 # 0.0
|
|
SHARED_LIBS += gcr-3 0.0 # 0.0
|
|
|
|
# GPLv2/LGPLv2
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB += GL X11 Xau Xcomposite Xcursor Xdamage Xdmcp Xext Xfixes
|
|
WANTLIB += Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0 c cairo
|
|
WANTLIB += cairo-gobject dbus-1 drm expat fontconfig freetype
|
|
WANTLIB += gcrypt gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0
|
|
WANTLIB += gobject-2.0 gpg-error gthread-2.0 gtk-3 m pango-1.0
|
|
WANTLIB += pangocairo-1.0 pangoft2-1.0 pcre pixman-1 png pthread
|
|
WANTLIB += pthread-stubs xcb xcb-render xcb-shm z
|
|
|
|
EXTRACT_SUFX= .tar.xz
|
|
|
|
MODULES= devel/gettext \
|
|
x11/gnome \
|
|
devel/dconf
|
|
|
|
DESKTOP_FILES= Yes
|
|
|
|
# only required during build for parsing ASN.1 files
|
|
BUILD_DEPENDS= security/libtasn1
|
|
|
|
LIB_DEPENDS= security/libgcrypt \
|
|
x11/dbus \
|
|
x11/gtk+3
|
|
|
|
CONFIGURE_ARGS= ${CONFIGURE_SHARED} \
|
|
--with-root-certs=/etc/ssl \
|
|
--disable-pam \
|
|
--disable-tests \
|
|
--disable-gtk-doc
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
FAKE_FLAGS= sysconfdir=${PREFIX}/share/examples
|
|
|
|
pre-configure:
|
|
perl -pi -e 's,make --version,${MAKE_PROGRAM} --version,' \
|
|
${WRKSRC}/configure
|
|
|
|
.include <bsd.port.mk>
|