diff options
author | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-09-19 15:23:16 +0800 |
---|---|---|
committer | ahze <ahze@df743ca5-7f9a-e211-a948-0013205c9059> | 2005-09-19 15:23:16 +0800 |
commit | 42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b (patch) | |
tree | b85598031ab9db79fa034b0b2d4e11304088f5e5 /deskutils/nautilus-locked-folder/Makefile | |
parent | 4019ef32f9b9b63f729fd25796d53a94d5386bdc (diff) | |
download | marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar.gz marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar.bz2 marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar.lz marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar.xz marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.tar.zst marcuscom-ports-42a97cdf5d15e4f5d02fcd904ff1b9a092932c5b.zip |
- Add nautilus-locked-folder
This is a plugin for Nautilus that adds a 'Lock folder' item to the
right-click menus of folders. Locking a folder encrypts its contents
and converts it into a '.locked' format archive. This archive can then
be decrypted by right-clicking it and selecting 'Unlock folder'.
WWW: http://www.ids.org.au/~jam6/?p=38
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@4850 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'deskutils/nautilus-locked-folder/Makefile')
-rw-r--r-- | deskutils/nautilus-locked-folder/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/deskutils/nautilus-locked-folder/Makefile b/deskutils/nautilus-locked-folder/Makefile new file mode 100644 index 000000000..b7825d340 --- /dev/null +++ b/deskutils/nautilus-locked-folder/Makefile @@ -0,0 +1,31 @@ +# New ports collection makefile for: nautilus-locked-folder +# Date created: 2005-09-17 +# Whom: Michael Johnson <ahze@FreeBSD.org> +# +# $FreeBSD$ +# $MCom$ +# + +PORTNAME= nautilus-locked-folder +PORTVERSION= 1.0.0 +CATEGORIES= deskutils security +MASTER_SITES= http://www.ids.org.au/~jam6/locked-folders/ + +MAINTAINER= ahze@FreeBSD.org +COMMENT= Nautilus plugin that allows you to encrypt the contents of a folder + +USE_LIBTOOL_VER=15 +USE_REINPLACE= yes +USE_X_PREFIX= yes +USE_GNOME= nautilus2 +PKGCONFIGS= gtk+-2.0 libglade-2.0 libnautilus-extension libgnomeui-2.0 +CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include `pkg-config --cflags ${PKGCONFIGS}`" \ + LDFLASG="-L${LOCALBASE}/lib -L${X11BASE}/lib `pkg-config --libs ${PKGCONFIGS}`" \ + LIBS="-lssl" +PLIST_FILES= lib/nautilus/extensions-1.0/libnautilus-locked-folder.so + +post-patch: + @${REINPLACE_CMD} -e 's|/usr/share/icons/hicolor/32x32/stock/data/|${X11BASE}/share/icons/hicolor/32x32/stock/data/|' \ + ${WRKSRC}/src/lockedfolder-extension.c + +.include <bsd.port.mk> |