c3141caea9
The GNOME Keyring Manager is an application for managing keyrings, in which any kind of sensitive information can be kept, mainly passwords. The default window shows 'default' keyrings with their stored items, and allows addition, removal and edition. Secrets can be copied using drag and drop, and can also be moved between different keyrings. The manager also has creation, opening and lock/unlock features. ok ajacoutot@
49 lines
1.4 KiB
Makefile
49 lines
1.4 KiB
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2008/05/10 08:22:50 jasper Exp $
|
|
|
|
COMMENT= keyring management program for the GNOME desktop
|
|
|
|
GNOME_PROJECT= gnome-keyring-manager
|
|
GNOME_VERSION= 2.20.0
|
|
|
|
CATEGORIES= x11
|
|
|
|
# LGPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
WANTLIB= ICE ORBit-2 ORBitCosNaming-2 SM X11 Xau Xcomposite \
|
|
Xcursor Xdamage Xdmcp Xext Xfixes Xi Xinerama Xrandr \
|
|
Xrender art_lgpl_2 atk-1.0 audiofile bonobo-2 bonobo-activation \
|
|
bonoboui-2 c cairo crypto dbus-1 dbus-glib-1 esd expat \
|
|
fontconfig freetype gailutil gconf-2 gdk-x11-2.0 gdk_pixbuf-2.0 \
|
|
glade-2.0 glib-2.0 glitz gmodule-2.0 gnome-2 gnomecanvas-2 \
|
|
gnomevfs-2 gobject-2.0 gthread-2.0 gtk-x11-2.0 jpeg \
|
|
m pango-1.0 pangocairo-1.0 pangoft2-1.0 pcre popt pthread \
|
|
ssl util xml2 z
|
|
|
|
MODULES= devel/gettext \
|
|
x11/gnome
|
|
|
|
BUILD_DEPENDS= ::textproc/scrollkeeper \
|
|
::x11/gnome/doc-utils
|
|
RUN_DEPENDS= ::x11/gnome/themes-extras
|
|
LIB_DEPENDS= gnomeui-2::x11/gnome/libgnomeui \
|
|
gnome-keyring::x11/gnome/keyring
|
|
|
|
USE_X11= Yes
|
|
DESKTOP_FILES= Yes
|
|
MODGNOME_HELP_FILES= Yes
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ARGS+= --with-gconf-schema-file-dir=${LOCALBASE}/share/schemas/gnome-keyring-manager \
|
|
--disable-schemas-install
|
|
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib" \
|
|
|
|
post-patch:
|
|
@ln -s /usr/bin/true ${WRKDIR}/bin/scrollkeeper-update
|
|
|
|
.include <bsd.port.mk>
|