Bug 66236 - [NEW PORT] security/gaim-encryption: Provides transparent RSA encryption as a Gaim plugin
Summary: [NEW PORT] security/gaim-encryption: Provides transparent RSA encryption as a...
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Joe Marcus Clarke
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-05-04 06:20 UTC by ports@c0decafe.net
Modified: 2004-05-05 07:20 UTC (History)
0 users

See Also:


Attachments
gaim-encryption-2.25.shar (3.17 KB, text/plain)
2004-05-04 06:20 UTC, ports@c0decafe.net
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description ports@c0decafe.net 2004-05-04 06:20:14 UTC
Gaim-Encryption uses NSS to provide transparent RSA encryption as a Gaim plugin.

Features include:
	* Automatically creates a public/private key pair for you upon loading 
		the plugin
	* Automatically transmits your public key to other users.
	* Supports 512 - 4096 bit keys.
	* Saves keys of known users, and warns you if their public key has changed.
	* Embeds all encryption and keys inside HTML, so if the other user doesn't
		have the plugin, they will get a little message telling them about the
		plugin, and won't get a screen full of garbage.
	* Stores keys in human readable files in your .gaim directory, in case you
		ever need to copy/edit them by hand. Which you really shouldn't have to do.
	* Automatically recognizes if you are chatting with someone who has the
		plugin- see the Preferences dialog.
	* Modular and extensible. If you want to define a different type of
		encryption, you can use this plugin as a wrapper to take care of
		transporting the encrypted binary over the IM pipe.

WWW:	http://gaim-encryption.sourceforge.net/

Generated with FreeBSD Port Tools 0.50
Comment 1 Joe Marcus Clarke freebsd_committer freebsd_triage 2004-05-04 06:32:53 UTC
Responsible Changed
From-To: freebsd-ports-bugs->marcus

I'll take this.
Comment 2 Michael Johnson 2004-05-04 06:35:19 UTC
checking for gaim header files...  
/usr/ports/security/gaim-encryption/work/../../../net/gaim/work/gaim 
-0.77/src
checking for pkg-config... /usr/local/bin/pkg-config
checking for mozilla-nss... gnome-config: not found
gnome-config: not found
Package mozilla-nss was not found in the pkg-config search path.
Perhaps you should add the directory containing `mozilla-nss.pc'
to the PKG_CONFIG_PATH environment variable
No package 'mozilla-nss' found
checking for Mozilla nspr4 includes... no
configure: error: You need to specify --with-nspr-includes="dir"
                      (where "dir" is the location of the NSPR headers  
like prio.h)
===>  Script "configure" failed unexpectedly.

michael
Comment 3 ports@c0decafe.net 2004-05-04 09:44:29 UTC
of course... don't know how that slipped, patch below, assuming i
diagnosed it correctly.

diff -ur gaim-encryption.old/Makefile gaim-encryption/Makefile
--- gaim-encryption.old/Makefile Tue May  4 08:43:13 2004
+++ gaim-encryption/Makefile Tue May  4 12:24:48 2004
@@ -15,7 +15,8 @@
COMMENT= Provides transparent RSA encryption as a Gaim plugin

DEPENDS= ${PORTSDIR}/net/gaim:configure
-RUN_DEPENDS= gaim:${PORTSDIR}/net/gaim
+BUILD_DEPENDS= gaim:${PORTSDIR}/net/gaim
+RUN_DEPENDS= ${BUILD_DEPENDS} 
LIB_DEPENDS= nss3:${PORTSDIR}/security/nss

USE_X_PREFIX= yes
--patch end here

thanks

On Tue, 2004-05-04 at 09:35, Michael Johnson wrote: 
> checking for gaim header files...  
> /usr/ports/security/gaim-encryption/work/../../../net/gaim/work/gaim 
> -0.77/src
> checking for pkg-config... /usr/local/bin/pkg-config
> checking for mozilla-nss... gnome-config: not found
> gnome-config: not found
> Package mozilla-nss was not found in the pkg-config search path.
> Perhaps you should add the directory containing `mozilla-nss.pc'
> to the PKG_CONFIG_PATH environment variable
> No package 'mozilla-nss' found
> checking for Mozilla nspr4 includes... no
> configure: error: You need to specify --with-nspr-includes="dir"
>                       (where "dir" is the location of the NSPR headers  
> like prio.h)
> ===>  Script "configure" failed unexpectedly.
> 
> michael
Comment 4 Joe Marcus Clarke freebsd_committer freebsd_triage 2004-05-05 07:19:36 UTC
State Changed
From-To: open->closed

Committed with a few modifications.  Thanks!