summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2005-07-29 23:13:46 +0000
committerDaniel Black <dragonheart@gentoo.org>2005-07-29 23:13:46 +0000
commit79941e48e0550f9ee0b2364d184507553fcbcb43 (patch)
treeffc9ad2874216a03a70d71f59ee92674adc2ab93 /app-crypt
parentfix html path to use PF, fixes #99382 (diff)
downloadgentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.tar.gz
gentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.tar.bz2
gentoo-2-79941e48e0550f9ee0b2364d184507553fcbcb43.zip
old version cleanout. ordered keywords properly. re-added dropped ~alpha keyword
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/seahorse/ChangeLog9
-rw-r--r--app-crypt/seahorse/files/digest-seahorse-0.7.51
-rw-r--r--app-crypt/seahorse/files/digest-seahorse-0.7.71
-rw-r--r--app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch82
-rw-r--r--app-crypt/seahorse/seahorse-0.6.3-r1.ebuild4
-rw-r--r--app-crypt/seahorse/seahorse-0.7.5.ebuild52
-rw-r--r--app-crypt/seahorse/seahorse-0.7.6.ebuild4
-rw-r--r--app-crypt/seahorse/seahorse-0.7.7.ebuild58
-rw-r--r--app-crypt/seahorse/seahorse-0.7.8.ebuild4
-rw-r--r--app-crypt/seahorse/seahorse-0.7.9.ebuild4
10 files changed, 14 insertions, 205 deletions
diff --git a/app-crypt/seahorse/ChangeLog b/app-crypt/seahorse/ChangeLog
index 9c7c0d62c014..c75292ababfe 100644
--- a/app-crypt/seahorse/ChangeLog
+++ b/app-crypt/seahorse/ChangeLog
@@ -1,12 +1,15 @@
# ChangeLog for app-crypt/seahorse
# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.39 2005/07/29 23:07:08 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/ChangeLog,v 1.40 2005/07/29 23:13:46 dragonheart Exp $
*seahorse-0.7.9 (29 Jul 2005)
29 Jul 2005; Daniel Black <dragonheart@gentoo.org>
- seahorse-0.6.3-r1.ebuild, seahorse-0.7.5.ebuild, +seahorse-0.7.9.ebuild:
- version bump. removed die from epatch || die
+ seahorse-0.6.3-r1.ebuild, seahorse-0.7.5.ebuild, +seahorse-0.7.9.ebuild
+ -files/seahorse-0.7.5-gpg1.4.patch, -seahorse-0.7.5.ebuild,
+ -seahorse-0.7.7.ebuild:
+ version bump. removed die from epatch || die. removed old versions.
+ re-added ~alpha keyword to seahorse-0.7.9
*seahorse-0.7.8 (10 May 2005)
diff --git a/app-crypt/seahorse/files/digest-seahorse-0.7.5 b/app-crypt/seahorse/files/digest-seahorse-0.7.5
deleted file mode 100644
index 232a04b20c5c..000000000000
--- a/app-crypt/seahorse/files/digest-seahorse-0.7.5
+++ /dev/null
@@ -1 +0,0 @@
-MD5 aa113297dbc5525a4853e73bedb9af45 seahorse-0.7.5.tar.bz2 937238
diff --git a/app-crypt/seahorse/files/digest-seahorse-0.7.7 b/app-crypt/seahorse/files/digest-seahorse-0.7.7
deleted file mode 100644
index 645182a1f583..000000000000
--- a/app-crypt/seahorse/files/digest-seahorse-0.7.7
+++ /dev/null
@@ -1 +0,0 @@
-MD5 e9dda6d9f4fa23da562b5edd026f8437 seahorse-0.7.7.tar.bz2 1085781
diff --git a/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch b/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch
deleted file mode 100644
index 6917a7a45644..000000000000
--- a/app-crypt/seahorse/files/seahorse-0.7.5-gpg1.4.patch
+++ /dev/null
@@ -1,82 +0,0 @@
---- configure.in.orig 2004-11-01 03:24:04.000000000 +0930
-+++ configure.in 2004-12-19 21:11:35.832207728 +0930
-@@ -52,13 +52,17 @@
- micro=`echo $gnupg_version | \
- sed 's/^gpg (GnuPG) \([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-- if test "$micro" -ge "$req_micro"; then
-- ok="yes"
-- fi
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
-+ if test "$micro" -ge "$req_micro"; then
-+ ok="yes"
- fi
-- fi
-+ fi
-+ fi
- fi
-
- if test "$ok" = "yes"; then
-@@ -93,8 +97,12 @@
- micro=`echo $gpgme_config_version | \
- sed 's/\([[0-9]]*\)\.\([[0-9]]*\)\.\([[0-9]]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
- if test "$micro" -ge "$req_micro"; then
- ok="yes"
- fi
---- configure.orig 2004-12-19 22:17:26.301178104 +0930
-+++ configure 2004-12-19 22:17:42.260751880 +0930
-@@ -19341,13 +19341,17 @@
- micro=`echo $gnupg_version | \
- sed 's/^gpg (GnuPG) \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-- if test "$micro" -ge "$req_micro"; then
-- ok="yes"
-- fi
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
-+ if test "$micro" -ge "$req_micro"; then
-+ ok="yes"
- fi
-- fi
-+ fi
-+ fi
- fi
-
- if test "$ok" = "yes"; then
-@@ -19422,8 +19426,12 @@
- micro=`echo $gpgme_config_version | \
- sed 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*/\3/'`
-
-- if test "$major" -eq "$req_major"; then
-- if test "$minor" -eq "$req_minor"; then
-+ if test "$major" -gt "$req_major"; then
-+ ok="yes"
-+ elif test "$major" -eq "$req_major"; then
-+ if test "$minor" -gt "$req_minor"; then
-+ ok="yes"
-+ elif test "$minor" -eq "$req_minor"; then
- if test "$micro" -ge "$req_micro"; then
- ok="yes"
- fi
diff --git a/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild b/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild
index 26bde7691b9a..507c3b22e500 100644
--- a/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild
+++ b/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild,v 1.12 2005/07/29 23:07:08 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.6.3-r1.ebuild,v 1.13 2005/07/29 23:13:46 dragonheart Exp $
inherit gnome2 eutils
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/seahorse/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="x86 ppc sparc amd64 ~alpha ppc64"
+KEYWORDS="~alpha amd64 ppc ppc64 sparc x86"
IUSE=""
RDEPEND="virtual/x11
diff --git a/app-crypt/seahorse/seahorse-0.7.5.ebuild b/app-crypt/seahorse/seahorse-0.7.5.ebuild
deleted file mode 100644
index 10121cd1cba1..000000000000
--- a/app-crypt/seahorse/seahorse-0.7.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.5.ebuild,v 1.9 2005/07/29 23:07:08 dragonheart Exp $
-
-inherit gnome2 eutils
-
-DESCRIPTION="gnome front end to gnupg"
-HOMEPAGE="http://seahorse.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha ~ppc64"
-
-RDEPEND="virtual/x11
- >=app-crypt/gnupg-1.2.0
- >=app-crypt/gpgme-1.0.0
- >=gnome-base/libgnomeui-2
- >=gnome-base/libglade-2
- >=x11-libs/gtk+-2
- >=gnome-base/eel-2
- >=gnome-base/gnome-mime-data-2
- >=gnome-base/libbonobo-2
- >=gnome-base/libbonoboui-2
- >=gnome-base/gnome-vfs-2
- >=app-editors/gedit-2.8.0
- dev-util/intltool
- dev-libs/glib
- x11-misc/shared-mime-info"
-
-#no ~ppc64 keyword yet >=gnome-base/bonobo-activation-2
-
-DEPEND="${RDEPEND}
- >=app-text/scrollkeeper-0.3
- dev-util/pkgconfig"
-
-DOCS="AUTHORS ChangeLog NEWS README TODO THANKS"
-IUSE=""
-
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- epatch ${FILESDIR}/${P}-gpg1.4.patch
-}
-
-src_install() {
- gnome2_src_install
-
- # remove conflicts with x11-misc/shared-mime-info
- rm -rf ${D}/usr/share/mime/application ${D}/usr/share/mime/magic ${D}/usr/share/mime/globs \
- ${D}/usr/share/mime/XMLnamespaces
-}
diff --git a/app-crypt/seahorse/seahorse-0.7.6.ebuild b/app-crypt/seahorse/seahorse-0.7.6.ebuild
index 8d441f6e186c..947ebb61b61e 100644
--- a/app-crypt/seahorse/seahorse-0.7.6.ebuild
+++ b/app-crypt/seahorse/seahorse-0.7.6.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.6.ebuild,v 1.3 2005/07/07 00:47:59 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.6.ebuild,v 1.4 2005/07/29 23:13:46 dragonheart Exp $
inherit gnome2 eutils
@@ -9,7 +9,7 @@ HOMEPAGE="http://seahorse.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~alpha ~ppc64"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="virtual/x11
>=app-crypt/gnupg-1.2.0
diff --git a/app-crypt/seahorse/seahorse-0.7.7.ebuild b/app-crypt/seahorse/seahorse-0.7.7.ebuild
deleted file mode 100644
index cc4f1cade3c1..000000000000
--- a/app-crypt/seahorse/seahorse-0.7.7.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.7.ebuild,v 1.3 2005/07/07 00:47:59 agriffis Exp $
-
-inherit gnome2 eutils
-
-DESCRIPTION="gnome front end to gnupg"
-HOMEPAGE="http://seahorse.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ppc64"
-
-RDEPEND="virtual/x11
- >=app-crypt/gnupg-1.2.0
- >=app-crypt/gpgme-1.0.0
- >=gnome-base/libgnomeui-2
- >=gnome-base/libglade-2
- >=x11-libs/gtk+-2.4
- >=gnome-base/eel-2
- >=gnome-base/gnome-mime-data-2
- >=gnome-base/libbonobo-2
- >=gnome-base/libbonoboui-2
- >=gnome-base/gnome-vfs-2
- >=app-editors/gedit-2.8.0
- >=gnome-base/nautilus-2.10
- dev-util/intltool
- dev-libs/glib
- x11-misc/shared-mime-info
- ldap? ( net-nds/openldap )"
-
-#no ~ppc64 keyword yet >=gnome-base/bonobo-activation-2
-
-DEPEND="${RDEPEND}
- >=app-text/scrollkeeper-0.3
- dev-util/pkgconfig"
-
-DOCS="AUTHORS ChangeLog NEWS README TODO THANKS"
-IUSE="ldap"
-
-src_compile() {
- autoconf
- # note below doesn't work - need to fix
- append-ldflags -Wl,-z,now
- export LDFLAGS
-
- G2CONF=`use_enable ldap`
- gnome2_src_compile
-}
-
-
-src_install() {
- gnome2_src_install
-
- # remove conflicts with x11-misc/shared-mime-info
- rm -rf ${D}/usr/share/mime/application ${D}/usr/share/mime/magic ${D}/usr/share/mime/globs \
- ${D}/usr/share/mime/XMLnamespaces
-}
diff --git a/app-crypt/seahorse/seahorse-0.7.8.ebuild b/app-crypt/seahorse/seahorse-0.7.8.ebuild
index 71fd98a051cc..0a82b4ae887a 100644
--- a/app-crypt/seahorse/seahorse-0.7.8.ebuild
+++ b/app-crypt/seahorse/seahorse-0.7.8.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.8.ebuild,v 1.2 2005/07/07 00:47:59 agriffis Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.8.ebuild,v 1.3 2005/07/29 23:13:46 dragonheart Exp $
inherit gnome2 eutils
@@ -9,7 +9,7 @@ HOMEPAGE="http://seahorse.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ppc64"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="virtual/x11
>=app-crypt/gnupg-1.2.0
diff --git a/app-crypt/seahorse/seahorse-0.7.9.ebuild b/app-crypt/seahorse/seahorse-0.7.9.ebuild
index 045ec272bc1e..db7dc44009c1 100644
--- a/app-crypt/seahorse/seahorse-0.7.9.ebuild
+++ b/app-crypt/seahorse/seahorse-0.7.9.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.9.ebuild,v 1.1 2005/07/29 23:07:08 dragonheart Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/seahorse/seahorse-0.7.9.ebuild,v 1.2 2005/07/29 23:13:46 dragonheart Exp $
inherit gnome2 eutils
@@ -9,7 +9,7 @@ HOMEPAGE="http://seahorse.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~x86 ~ppc ~sparc ~amd64 ~ppc64"
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
RDEPEND="virtual/x11
>=app-crypt/gnupg-1.2.0