diff options
author | marcus <marcus@FreeBSD.org> | 2004-11-07 22:24:32 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2004-11-07 22:24:32 +0000 |
commit | fb8541d2d8cfc686242832e1c242a6e16a71f562 (patch) | |
tree | eb4a9f17e9018ff5a01b23a7dcb55603930cc5cf /security/gnomekeyring | |
parent | 9d873617ccf0d009f3c169794dbfcb0741259b2e (diff) | |
download | FreeBSD-ports-fb8541d2d8cfc686242832e1c242a6e16a71f562.zip FreeBSD-ports-fb8541d2d8cfc686242832e1c242a6e16a71f562.tar.gz |
Presenting GNOME 2.8 for FreeBSD (2.8.1 to be exact).
This release notes detailing all of the new goodies in GNOME 2.8 can
be found at http://www.gnome.org/start/2.8/notes/, and the list of what
was fixed in GNOME 2.8.1 can be found at
http://lists.gnome.org/archives/gnome-announce-list/2004-October/msg00056.html.
This release, as well as all of our others, would not have been possible
without the great efforts of our FreeBSD GNOME Team. The list of
current members can be found at http://www.freebsd.org/gnome/contact.html
(including our newest member, Michael Johnson <ahze@FreeBSD.org>).
Special thanks also goes out to all of the loyal FreeBSD GNOME users that
put up with crashes and hangs to test and debug GNOME on FreeBSD. We would
especially like to thank those users that provided patches for GNOME 2.7 and
2.8:
Franz Klammer <klammer@webonaut.com>
Piotr Smyrak <piotr.smyrak@heron.pl>
Radek Kozlowski <radek@raadradd.com>
Khairil Yusof <kaeru@pd.jaring.my>
Yasuda Keisuke <kysd@po.harenet.ne.jp>
Tom McLaughlin <tmclaugh@sdf.lonestar.org>
Vladimir Grebenschikov <vova@fbsd.ru>
GNOME 2.8 also features a new, FreeBSD-specific splashscreen that
was designed by jimmac for GNOME 2.8, then daemonized by
Franz Klammer <klammer@webonaut.com> and Radek Kozlowski
<radek@raadradd.com>.
As with GNOME 2.6, you cannot just "portupgrade" to GNOME 2.8. There is
a script provided at http://www.marcuscom.com/downloads/gnome_upgrade28.sh
that will aid in the upgrade process. Full documentation on the GNOME 2.8
upgrade is coming following this commit.
From all of us at FreeBSD GNOME, ENJOY!
Diffstat (limited to 'security/gnomekeyring')
-rw-r--r-- | security/gnomekeyring/Makefile | 9 | ||||
-rw-r--r-- | security/gnomekeyring/distinfo | 4 | ||||
-rw-r--r-- | security/gnomekeyring/files/patch-gnome-keyring-daemon.c | 34 | ||||
-rw-r--r-- | security/gnomekeyring/files/patch-gnome-keyring-daemon.c.orig | 0 | ||||
-rw-r--r-- | security/gnomekeyring/pkg-plist | 8 |
5 files changed, 48 insertions, 7 deletions
diff --git a/security/gnomekeyring/Makefile b/security/gnomekeyring/Makefile index b387e2e..697617e 100644 --- a/security/gnomekeyring/Makefile +++ b/security/gnomekeyring/Makefile @@ -6,11 +6,10 @@ # PORTNAME= gnomekeyring -PORTVERSION= 0.2.1 -PORTREVISION= 1 +PORTVERSION= 0.4.0 CATEGORIES= security gnome MASTER_SITES= ${MASTER_SITE_GNOME} -MASTER_SITE_SUBDIR= sources/gnome-keyring/0.2 +MASTER_SITE_SUBDIR= sources/gnome-keyring/0.4 DISTNAME= gnome-keyring-${PORTVERSION} DIST_SUBDIR= gnome2 @@ -19,9 +18,9 @@ COMMENT= A program that keeps passwords and other secrets USE_X_PREFIX= yes USE_BZIP2= yes -USE_GNOME= gnomehack lthack gtk20 +USE_GNOME= gnomehack gtk20 USE_GMAKE= yes -USE_INC_LIBTOOL_VER=13 +USE_LIBTOOL_VER=15 INSTALLS_SHLIB= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LDFLAGS="-L${LOCALBASE}/lib" diff --git a/security/gnomekeyring/distinfo b/security/gnomekeyring/distinfo index 281cbb9..f3fb17b 100644 --- a/security/gnomekeyring/distinfo +++ b/security/gnomekeyring/distinfo @@ -1,2 +1,2 @@ -MD5 (gnome2/gnome-keyring-0.2.1.tar.bz2) = 2fe5fb39cc18d1a6792fd3281223dfff -SIZE (gnome2/gnome-keyring-0.2.1.tar.bz2) = 324989 +MD5 (gnome2/gnome-keyring-0.4.0.tar.bz2) = 683b422b77c56c3a125e7aa5c886c47e +SIZE (gnome2/gnome-keyring-0.4.0.tar.bz2) = 344937 diff --git a/security/gnomekeyring/files/patch-gnome-keyring-daemon.c b/security/gnomekeyring/files/patch-gnome-keyring-daemon.c new file mode 100644 index 0000000..293df59 --- /dev/null +++ b/security/gnomekeyring/files/patch-gnome-keyring-daemon.c @@ -0,0 +1,34 @@ +--- gnome-keyring-daemon.c.orig Tue Jul 20 22:41:27 2004 ++++ gnome-keyring-daemon.c Tue Jul 20 22:43:03 2004 +@@ -121,7 +121,7 @@ + int i; + + got_random = FALSE; +-#ifdef __linux__ ++#if defined(__linux__) || defined(__FreeBSD__) + { + int fd; + +@@ -352,6 +352,22 @@ + app_ref->pathname[len] = 0; + } + ++ } ++#elif defined(__FreeBSD__) ++ { ++ char buffer[1024]; ++ int len; ++ char *path; ++ ++ path = g_strdup_printf ("/proc/%d/file", pid); ++ len = readlink (path, buffer, sizeof (buffer)); ++ g_free (path); ++ ++ if (len > 0) { ++ app_ref->pathname = g_malloc (len + 1); ++ memcpy (app_ref->pathname, buffer, len); ++ app_ref->pathname[len] = 0; ++ } + } + #endif + diff --git a/security/gnomekeyring/files/patch-gnome-keyring-daemon.c.orig b/security/gnomekeyring/files/patch-gnome-keyring-daemon.c.orig new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/security/gnomekeyring/files/patch-gnome-keyring-daemon.c.orig diff --git a/security/gnomekeyring/pkg-plist b/security/gnomekeyring/pkg-plist index e8992e1..f28f54a 100644 --- a/security/gnomekeyring/pkg-plist +++ b/security/gnomekeyring/pkg-plist @@ -7,6 +7,9 @@ libdata/pkgconfig/gnome-keyring-1.pc libexec/gnome-keyring-ask share/locale/ar/LC_MESSAGES/gnome-keyring.mo share/locale/az/LC_MESSAGES/gnome-keyring.mo +share/locale/bg/LC_MESSAGES/gnome-keyring.mo +share/locale/bn/LC_MESSAGES/gnome-keyring.mo +share/locale/bs/LC_MESSAGES/gnome-keyring.mo share/locale/ca/LC_MESSAGES/gnome-keyring.mo share/locale/cs/LC_MESSAGES/gnome-keyring.mo share/locale/cy/LC_MESSAGES/gnome-keyring.mo @@ -16,10 +19,12 @@ share/locale/el/LC_MESSAGES/gnome-keyring.mo share/locale/en_CA/LC_MESSAGES/gnome-keyring.mo share/locale/en_GB/LC_MESSAGES/gnome-keyring.mo share/locale/es/LC_MESSAGES/gnome-keyring.mo +share/locale/eu/LC_MESSAGES/gnome-keyring.mo share/locale/fi/LC_MESSAGES/gnome-keyring.mo share/locale/fr/LC_MESSAGES/gnome-keyring.mo share/locale/hr/LC_MESSAGES/gnome-keyring.mo share/locale/hu/LC_MESSAGES/gnome-keyring.mo +share/locale/id/LC_MESSAGES/gnome-keyring.mo share/locale/is/LC_MESSAGES/gnome-keyring.mo share/locale/it/LC_MESSAGES/gnome-keyring.mo share/locale/ja/LC_MESSAGES/gnome-keyring.mo @@ -27,18 +32,21 @@ share/locale/ko/LC_MESSAGES/gnome-keyring.mo share/locale/lt/LC_MESSAGES/gnome-keyring.mo share/locale/mn/LC_MESSAGES/gnome-keyring.mo share/locale/ms/LC_MESSAGES/gnome-keyring.mo +share/locale/nb/LC_MESSAGES/gnome-keyring.mo share/locale/nl/LC_MESSAGES/gnome-keyring.mo share/locale/no/LC_MESSAGES/gnome-keyring.mo share/locale/pa/LC_MESSAGES/gnome-keyring.mo share/locale/pl/LC_MESSAGES/gnome-keyring.mo share/locale/pt/LC_MESSAGES/gnome-keyring.mo share/locale/pt_BR/LC_MESSAGES/gnome-keyring.mo +share/locale/ro/LC_MESSAGES/gnome-keyring.mo share/locale/ru/LC_MESSAGES/gnome-keyring.mo share/locale/sk/LC_MESSAGES/gnome-keyring.mo share/locale/sq/LC_MESSAGES/gnome-keyring.mo share/locale/sr/LC_MESSAGES/gnome-keyring.mo share/locale/sr@Latn/LC_MESSAGES/gnome-keyring.mo share/locale/sv/LC_MESSAGES/gnome-keyring.mo +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 |