diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-03-19 13:14:07 +0800 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2007-03-19 13:14:07 +0800 |
commit | 951c257ea3655de6e80c26a36c18c69ee8047ea8 (patch) | |
tree | 249b59a23d9c6fae8db5e5639385f6273d237705 /security/gnome-keyring | |
parent | 91926e92b73e3751382216a16044c5d8b24ad126 (diff) | |
download | freebsd-ports-gnome-951c257ea3655de6e80c26a36c18c69ee8047ea8.tar.gz freebsd-ports-gnome-951c257ea3655de6e80c26a36c18c69ee8047ea8.tar.zst freebsd-ports-gnome-951c257ea3655de6e80c26a36c18c69ee8047ea8.zip |
Presenting GNOME 2.18 for FreeBSD. GNOME 2.18 is a departure from recent GNOME
releases in that it focuses more on stability and functionality than on
new features. Not that it doesn't have its share of new and exciting
items. See http://www.gnome.org/start/2.18/ for all the goodies in
this release.
GNOME 2.18 for FreeBSD would not have been possible without the hard work
of the FreeBSD GNOME Team and our intrepid band of testers including
J. W. Ballantine, Pawel Worach, Yasuda Keisuke, Pascal Hofstee, miwi,
Yoshihiro Ota, Vladimir Grebenschikov, Jukka A. Ukkonen,
Phillip Neumann, Franz Klammer, and Neal Delmonico.
Diffstat (limited to 'security/gnome-keyring')
-rw-r--r-- | security/gnome-keyring/Makefile | 5 | ||||
-rw-r--r-- | security/gnome-keyring/distinfo | 6 | ||||
-rw-r--r-- | security/gnome-keyring/files/patch-gnome-keyring.c | 30 | ||||
-rw-r--r-- | security/gnome-keyring/pkg-plist | 4 |
4 files changed, 11 insertions, 34 deletions
diff --git a/security/gnome-keyring/Makefile b/security/gnome-keyring/Makefile index 8165fcb447cd..84fd88dcb7c1 100644 --- a/security/gnome-keyring/Makefile +++ b/security/gnome-keyring/Makefile @@ -3,10 +3,11 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ +# $MCom: ports/security/gnome-keyring/Makefile,v 1.31 2007/03/12 19:28:27 mezz Exp $ # PORTNAME= gnome-keyring -PORTVERSION= 0.6.0 +PORTVERSION= 0.8 CATEGORIES= security gnome MASTER_SITES= ${MASTER_SITE_GNOME} MASTER_SITE_SUBDIR= sources/${PORTNAME}/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/} @@ -16,6 +17,8 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= A program that keeps passwords and other secrets +LIB_DEPENDS= dbus-1.3:${PORTSDIR}/devel/dbus + USE_BZIP2= yes USE_GNOME= gnomehack gtk20 USE_GMAKE= yes diff --git a/security/gnome-keyring/distinfo b/security/gnome-keyring/distinfo index cc9681ae150a..62ba04d80468 100644 --- a/security/gnome-keyring/distinfo +++ b/security/gnome-keyring/distinfo @@ -1,3 +1,3 @@ -MD5 (gnome2/gnome-keyring-0.6.0.tar.bz2) = 1e3a3a12b19fc5ebe95363658c2256d8 -SHA256 (gnome2/gnome-keyring-0.6.0.tar.bz2) = 649f2a0d5298b896781d0ac563b8ea1be7f3fe07fd17ea43b0ec0562be47769f -SIZE (gnome2/gnome-keyring-0.6.0.tar.bz2) = 476280 +MD5 (gnome2/gnome-keyring-0.8.tar.bz2) = 9dfbe4da53f229a5b096e1ba71029f01 +SHA256 (gnome2/gnome-keyring-0.8.tar.bz2) = bfc3ea64e7393cfe644b4fe9fcde2d921b71d276f2617b161c2c070940855a41 +SIZE (gnome2/gnome-keyring-0.8.tar.bz2) = 446811 diff --git a/security/gnome-keyring/files/patch-gnome-keyring.c b/security/gnome-keyring/files/patch-gnome-keyring.c deleted file mode 100644 index 27a981e6c083..000000000000 --- a/security/gnome-keyring/files/patch-gnome-keyring.c +++ /dev/null @@ -1,30 +0,0 @@ ---- gnome-keyring.c.orig Mon Apr 24 06:21:29 2006 -+++ gnome-keyring.c Mon Jun 12 14:24:47 2006 -@@ -275,9 +275,9 @@ write_credentials_byte_sync (int socket) - msg.msg_control = (caddr_t) &cmsg; - msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); - memset (&cmsg, 0, sizeof (cmsg)); -- cmsg->cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); -- cmsg->cmsg_level = SOL_SOCKET; -- cmsg->cmsg_type = SCM_CREDS; -+ cmsg.hdr.cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); -+ cmsg.hdr.cmsg_level = SOL_SOCKET; -+ cmsg.hdr.cmsg_type = SCM_CREDS; - #endif - - again: -@@ -324,10 +324,10 @@ write_credentials_byte (GnomeKeyringOper - - msg.msg_control = (caddr_t) &cmsg; - msg.msg_controllen = CMSG_SPACE (sizeof (struct cmsgcred)); -- memset (cmsg, 0, sizeof (cmsg)); -- cmsg->cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); -- cmsg->cmsg_level = SOL_SOCKET; -- cmsg->cmsg_type = SCM_CREDS; -+ memset (&cmsg, 0, sizeof (cmsg)); -+ cmsg.hdr.cmsg_len = CMSG_LEN (sizeof (struct cmsgcred)); -+ cmsg.hdr.cmsg_level = SOL_SOCKET; -+ cmsg.hdr.cmsg_type = SCM_CREDS; - #endif - - again: diff --git a/security/gnome-keyring/pkg-plist b/security/gnome-keyring/pkg-plist index 470fb7c669e8..ce9beab66841 100644 --- a/security/gnome-keyring/pkg-plist +++ b/security/gnome-keyring/pkg-plist @@ -18,6 +18,7 @@ libexec/gnome-keyring-ask %%DOCSDIR%%/up.png share/locale/ar/LC_MESSAGES/gnome-keyring.mo share/locale/az/LC_MESSAGES/gnome-keyring.mo +share/locale/be/LC_MESSAGES/gnome-keyring.mo share/locale/bg/LC_MESSAGES/gnome-keyring.mo share/locale/bn/LC_MESSAGES/gnome-keyring.mo share/locale/bn_IN/LC_MESSAGES/gnome-keyring.mo @@ -77,6 +78,7 @@ share/locale/ta/LC_MESSAGES/gnome-keyring.mo share/locale/th/LC_MESSAGES/gnome-keyring.mo share/locale/tr/LC_MESSAGES/gnome-keyring.mo share/locale/uk/LC_MESSAGES/gnome-keyring.mo +share/locale/vi/LC_MESSAGES/gnome-keyring.mo share/locale/xh/LC_MESSAGES/gnome-keyring.mo share/locale/zh_CN/LC_MESSAGES/gnome-keyring.mo share/locale/zh_HK/LC_MESSAGES/gnome-keyring.mo @@ -129,3 +131,5 @@ share/locale/zh_TW/LC_MESSAGES/gnome-keyring.mo @dirrmtry share/locale/ca @dirrmtry share/locale/bn_IN/LC_MESSAGES @dirrmtry share/locale/bn_IN +@dirrmtry share/locale/be/LC_MESSAGES +@dirrmtry share/locale/be |