Seahorse: Difference between revisions
From CBLFS
Jump to navigationJump to search
Weibullguy (talk | contribs) mNo edit summary |
No edit summary |
||
| Line 51: | Line 51: | ||
Compile the package: | Compile the package: | ||
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} && | GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome && | ||
make | make | ||
| Line 67: | Line 67: | ||
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \ | ||
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} && | GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome && | ||
make | make | ||
| Line 79: | Line 79: | ||
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \ | ||
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} \ | GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
--libdir=${GNOME_PREFIX}/lib32 && | --libdir=${GNOME_PREFIX}/lib32 && | ||
make | make | ||
| Line 92: | Line 92: | ||
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \ | ||
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} \ | GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \ | ||
--libdir=${GNOME_PREFIX}/lib64 && | --libdir=${GNOME_PREFIX}/lib64 && | ||
make | make | ||
Revision as of 13:48, 12 May 2008
| Download Source: | http://ftp.gnome.org/pub/gnome/sources/seahorse/2.22/seahorse-2.22.0.tar.bz2 |
|---|
Introduction to Seahorse
Seahorse is a GNOME application for managing encryption keys. It is the replacement for GNOME Keyring Manager.
Project Homepage: http://www.gnome.org/projects/seahorse/index.html
Dependencies
Required
Recommended
Optional
- OpenLDAP
- gedit
- Nautilus
- libsoup
- libnotify
- Avahi
- Epiphany
- Firefox or Thunderbird or Seamonkey or xulrunner for Gecko engine
Configuration Information
| --enable-tests: Compile Test Programs. |
The following build instructions assume you've installed version 2 of GnuPG. If you are still using version 1, omit GNUPG=/usr/bin/gpg2.
Non-Multilib
Compile the package:
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome &&
make
Install the package:
make install &&
chmod -s ${GNOME_PREFIX}/bin/seahorse-agent &&
chmod -s ${GNOME_PREFIX}/bin/seahorse-daemon
Multilib
32Bit
Compile the package:
CC="gcc ${BUILD32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH32}" \
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome &&
make
Install the package:
make install
N32
Compile the package:
CC="gcc ${BUILDN32}" PKG_CONFIG_PATH="${PKG_CONFIG_PATHN32}" \
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
--libdir=${GNOME_PREFIX}/lib32 &&
make
Install the package:
make install
64Bit
Compile the package:
CC="gcc ${BUILD64}" PKG_CONFIG_PATH="${PKG_CONFIG_PATH64}" \
GNUPG=/usr/bin/gpg2 ./configure --prefix=${GNOME_PREFIX} --sysconfdir=/etc/gnome \
--libdir=${GNOME_PREFIX}/lib64 &&
make
Install the package:
make install &&
chmod -s ${GNOME_PREFIX}/bin/seahorse-agent &&
chmod -s ${GNOME_PREFIX}/bin/seahorse-daemon
Configuring
To start an instance of the seahorse-agent when you login, execute the following:
cat > /etc/profile.d/70-seahorse-agent << EOF
# Begin /etc/profile.d/70-seahorse-agent
seahorseagent=`which seahorse-agent 2> /dev/null`
if [ -n "$seahorseagent" ] && [ -x "$seahorseagent" ] && [ -z "$GPG_AGENT_INFO" ] ; then
command="$seahorseagent --execute $command"
fi
# End /etc/prfile.d/70-seahorse-agent
EOF
Contents
| Installed Directories: | None |
|---|---|
| Installed Programs: | cryptui-test-keyset, cryptui-test-ui, seahorse, seahorse-agent, seahorse-daemon, seahorse-preferences, seahorse-tool |
| Installed Libraries: | libseahorse-pgp.{a, la, so}, libcryptui.{a, la, so}, libnautilus-seahorse.{a, la, so} |
Short Descriptions
| cryptui-test-keyset | |
|---|---|
| cryptui-test-ui | |
| seahorse | |
| seahorse-agent | |
| seahorse-daemon | |
| seahorse-preferences | |
| seahorse-tool |