diff options
author | Jeremy Olexa <darkside@gentoo.org> | 2009-10-05 21:26:06 +0000 |
---|---|---|
committer | Jeremy Olexa <darkside@gentoo.org> | 2009-10-05 21:26:06 +0000 |
commit | 3e03c574d6400dbb9b5e7099cff8b562b605eec7 (patch) | |
tree | 5d5892ca665b4388862e31f7c197bd2974426e90 /xfce-base | |
parent | Keywording for ppc. (diff) | |
download | historical-3e03c574d6400dbb9b5e7099cff8b562b605eec7.tar.gz historical-3e03c574d6400dbb9b5e7099cff8b562b605eec7.tar.bz2 historical-3e03c574d6400dbb9b5e7099cff8b562b605eec7.zip |
Port Gentoo Prefix ebuild to gentoo-x86
Package-Manager: portage-2.1.6.13/cvs/Linux x86_64
Diffstat (limited to 'xfce-base')
25 files changed, 193 insertions, 38 deletions
diff --git a/xfce-base/exo/ChangeLog b/xfce-base/exo/ChangeLog index 9e61b448c969..32a87df0edc3 100644 --- a/xfce-base/exo/ChangeLog +++ b/xfce-base/exo/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-base/exo # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.7 2009/09/07 01:17:13 ranger Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/ChangeLog,v 1.8 2009/10/05 21:04:17 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> + +files/exo-0.3.4-interix.patch, exo-0.3.102-r1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 07 Sep 2009; Brent Baude <ranger@gentoo.org> exo-0.3.102-r1.ebuild: Marking exo-0.3.102-r1 ppc64 for bug 282710 diff --git a/xfce-base/exo/exo-0.3.102-r1.ebuild b/xfce-base/exo/exo-0.3.102-r1.ebuild index 3dff24f14e32..bae343fed686 100644 --- a/xfce-base/exo/exo-0.3.102-r1.ebuild +++ b/xfce-base/exo/exo-0.3.102-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.3.102-r1.ebuild,v 1.10 2009/09/12 17:23:48 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/exo/exo-0.3.102-r1.ebuild,v 1.11 2009/10/05 21:04:17 darkside Exp $ EAPI=2 inherit xfconf python multilib @@ -12,7 +12,7 @@ SRC_URI="mirror://xfce/src/xfce/exo/0.3/${P}.tar.bz2" LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="debug doc hal libnotify python" RDEPEND=">=dev-lang/perl-5.6 @@ -40,6 +40,12 @@ src_prepare() { rm py-compile touch py-compile chmod +x py-compile + + epatch "${FILESDIR}"/${PN}-0.3.4-interix.patch + if [[ ${CHOST} == *-interix* ]] ; then + # configure detects getmntent, which is false! + export ac_cv_func_getmntent=no + fi } pkg_postinst() { diff --git a/xfce-base/exo/files/exo-0.3.4-interix.patch b/xfce-base/exo/files/exo-0.3.4-interix.patch new file mode 100644 index 000000000000..73e1926989cd --- /dev/null +++ b/xfce-base/exo/files/exo-0.3.4-interix.patch @@ -0,0 +1,108 @@ +diff -ru -x '*.P[l]o' exo-0.3.4.orig/exo/exo-mount-point.c exo-0.3.4/exo/exo-mount-point.c +--- exo-0.3.4.orig/exo/exo-mount-point.c 2008-03-13 08:08:55 +0100 ++++ exo-0.3.4/exo/exo-mount-point.c 2008-03-13 08:58:10 +0100 +@@ -72,7 +72,10 @@ + #include <exo/exo-string.h> + #include <exo/exo-alias.h> + +- ++#if defined(__INTERIX) ++#include <dirent.h> ++#include <sys/statvfs.h> ++#endif + + /* define _PATH_FSTAB if undefined */ + #ifndef _PATH_FSTAB +@@ -309,6 +312,45 @@ + /* release the buffer */ + free (mntbuf); + } ++#elif defined(__INTERIX) ++ DIR* dirp = opendir("/dev/fs"); ++ if(dirp == NULL) { ++ g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), ++ _("Failed to open file \"%s\": %s"), "/dev/fs", ++ g_strerror (errno)); ++ return NULL; ++ } else { ++ char file_name[9 + NAME_MAX]; ++ int saved_errno; ++ ++ while(1) { ++ struct statvfs stat_buf; ++ struct dirent entry; ++ struct dirent *result; ++ ++ if (readdir_r (dirp, &entry, &result) || result == NULL) ++ break; ++ ++ strcpy (file_name, "/dev/fs/"); ++ strcat (file_name, entry.d_name); ++ ++ if(statvfs(file_name, &stat_buf) == 0) ++ { ++ exo_mount_point_add_if_matches(mask, device, folder, fstype, ++ stat_buf.f_mntfromname, ++ stat_buf.f_mntonname, ++ stat_buf.f_fstypename, ++ ((stat_buf.f_flag & ST_RDONLY) != 0), ++ &mount_points); ++ } ++ else ++ { ++ /* this is ok for now... */ ++ } ++ } ++ ++ closedir (dirp); ++ } + #else + #error "Add support for your operating system here." + #endif +@@ -413,6 +455,46 @@ + + /* close the file handle */ + endfsent (); ++#elif defined(__INTERIX) ++ DIR* dirp = opendir("/dev/fs"); ++ if(dirp == NULL) { ++ g_set_error (error, G_FILE_ERROR, g_file_error_from_errno (errno), ++ _("Failed to open file \"%s\": %s"), "/dev/fs", ++ g_strerror (errno)); ++ return NULL; ++ } else { ++ char file_name[9 + NAME_MAX]; ++ int saved_errno; ++ ++ while(1) { ++ struct statvfs stat_buf; ++ struct dirent entry; ++ struct dirent *result; ++ ++ if (readdir_r (dirp, &entry, &result) || result == NULL) ++ break; ++ ++ strcpy (file_name, "/dev/fs/"); ++ strcat (file_name, entry.d_name); ++ ++ if(statvfs(file_name, &stat_buf) == 0) ++ { ++ exo_mount_point_add_if_matches(mask, device, folder, fstype, ++ stat_buf.f_mntfromname, ++ stat_buf.f_mntonname, ++ stat_buf.f_fstypename, ++ ((stat_buf.f_flag & ST_RDONLY) != 0), ++ &mount_points); ++ } ++ else ++ { ++ /* this is ok for now... */ ++ } ++ } ++ ++ closedir (dirp); ++ } ++ + #else + #error "Add support for your operating system here." + #endif diff --git a/xfce-base/libxfce4menu/ChangeLog b/xfce-base/libxfce4menu/ChangeLog index 6bef42cc6c3e..85bff878d343 100644 --- a/xfce-base/libxfce4menu/ChangeLog +++ b/xfce-base/libxfce4menu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/libxfce4menu # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4menu/ChangeLog,v 1.17 2009/08/01 20:22:37 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4menu/ChangeLog,v 1.18 2009/10/05 21:05:20 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> libxfce4menu-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> libxfce4menu-4.6.1.ebuild: diff --git a/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild b/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild index 5685e370b908..3bf95b23bf17 100644 --- a/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild +++ b/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild,v 1.13 2009/08/01 20:24:35 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4menu/libxfce4menu-4.6.1.ebuild,v 1.14 2009/10/05 21:05:20 darkside Exp $ EAPI=2 inherit xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/libraries" LICENSE="LGPL-2 FDL-1.1" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="debug" RDEPEND=">=dev-libs/glib-2.6:2 diff --git a/xfce-base/libxfce4util/ChangeLog b/xfce-base/libxfce4util/ChangeLog index 73398d4820fd..5929bbee7ee6 100644 --- a/xfce-base/libxfce4util/ChangeLog +++ b/xfce-base/libxfce4util/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/libxfce4util # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/ChangeLog,v 1.130 2009/08/01 20:12:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/ChangeLog,v 1.131 2009/10/05 21:06:19 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> libxfce4util-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> libxfce4util-4.6.1.ebuild: diff --git a/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild b/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild index e808d50b081f..89e80ee4d898 100644 --- a/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild +++ b/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild,v 1.11 2009/08/01 20:12:19 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/libxfce4util/libxfce4util-4.6.1.ebuild,v 1.12 2009/10/05 21:06:20 darkside Exp $ EAPI=2 inherit xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/libraries" LICENSE="LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris ~x86-solaris" IUSE="debug" RDEPEND=">=dev-libs/glib-2.12:2" diff --git a/xfce-base/thunar/ChangeLog b/xfce-base/thunar/ChangeLog index 5aece5c5f9f0..ca7d03b3b573 100644 --- a/xfce-base/thunar/ChangeLog +++ b/xfce-base/thunar/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/thunar # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.80 2009/09/04 04:05:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/ChangeLog,v 1.81 2009/10/05 21:10:19 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> thunar-1.0.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 04 Sep 2009; Jeremy Olexa <darkside@gentoo.org> thunar-1.0.1.ebuild: Add warning for dbus error if you aren't in the plugdev group, bug 279077 diff --git a/xfce-base/thunar/thunar-1.0.1.ebuild b/xfce-base/thunar/thunar-1.0.1.ebuild index 6cdf19a29121..001ab07ec821 100644 --- a/xfce-base/thunar/thunar-1.0.1.ebuild +++ b/xfce-base/thunar/thunar-1.0.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild,v 1.13 2009/09/04 04:05:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/thunar/thunar-1.0.1.ebuild,v 1.14 2009/10/05 21:10:19 darkside Exp $ EAPI=2 MY_P=${P/t/T} @@ -11,7 +11,7 @@ HOMEPAGE="http://thunar.xfce.org" LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="dbus debug doc exif gnome hal pcre startup-notification +trash-plugin" RDEPEND=">=dev-lang/perl-5.6 diff --git a/xfce-base/xfce-utils/ChangeLog b/xfce-base/xfce-utils/ChangeLog index ed653aa4d7d7..a7269fe562ad 100644 --- a/xfce-base/xfce-utils/ChangeLog +++ b/xfce-base/xfce-utils/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfce-utils # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.143 2009/08/02 08:34:24 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/ChangeLog,v 1.144 2009/10/05 21:12:57 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfce-utils-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 02 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xfce-utils-4.6.1.ebuild: diff --git a/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild b/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild index 2143f40436ec..622e98930295 100644 --- a/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild +++ b/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild,v 1.10 2009/08/02 08:34:24 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce-utils/xfce-utils-4.6.1.ebuild,v 1.11 2009/10/05 21:12:57 darkside Exp $ EAPI=2 inherit xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/xfce-utils/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="dbus debug +lock" RDEPEND="x11-apps/xrdb diff --git a/xfce-base/xfce4-meta/ChangeLog b/xfce-base/xfce4-meta/ChangeLog index 51e300d2883c..d7052cd0b316 100644 --- a/xfce-base/xfce4-meta/ChangeLog +++ b/xfce-base/xfce4-meta/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfce4-meta # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/ChangeLog,v 1.2 2009/09/13 08:11:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/ChangeLog,v 1.3 2009/10/05 21:13:56 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfce4-meta-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 13 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> xfce4-meta-4.6.1.ebuild: diff --git a/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild b/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild index 4e8c60991e5f..2cea18a75e3c 100644 --- a/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild +++ b/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild,v 1.3 2009/09/13 08:11:14 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-meta/xfce4-meta-4.6.1.ebuild,v 1.4 2009/10/05 21:13:56 darkside Exp $ EAPI=2 @@ -10,7 +10,7 @@ SRC_URI="" LICENSE="as-is" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="minimal +session" RDEPEND="x11-themes/gtk-engines-xfce diff --git a/xfce-base/xfce4-panel/ChangeLog b/xfce-base/xfce4-panel/ChangeLog index e5e9c6cb7609..4120f376bd90 100644 --- a/xfce-base/xfce4-panel/ChangeLog +++ b/xfce-base/xfce4-panel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfce4-panel # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.145 2009/08/01 22:54:01 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/ChangeLog,v 1.146 2009/10/05 21:14:51 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfce4-panel-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xfce4-panel-4.6.1.ebuild: diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild b/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild index a5d7fc6901bd..f88cf93d6ee6 100644 --- a/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild +++ b/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild,v 1.12 2009/08/23 17:45:33 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-panel/xfce4-panel-4.6.1.ebuild,v 1.13 2009/10/05 21:14:51 darkside Exp $ EAPI=2 inherit xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/xfce4-panel/" LICENSE="GPL-2 LGPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="debug startup-notification" RDEPEND=">=dev-libs/glib-2.8:2 diff --git a/xfce-base/xfce4-session/ChangeLog b/xfce-base/xfce4-session/ChangeLog index 8fe63b5c93ba..c0c9fd074646 100644 --- a/xfce-base/xfce4-session/ChangeLog +++ b/xfce-base/xfce4-session/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-base/xfce4-session # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.97 2009/09/13 13:46:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/ChangeLog,v 1.98 2009/10/05 21:16:49 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> + xfce4-session-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 13 Sep 2009; Jeremy Olexa <darkside@gentoo.org> xfce4-session-4.6.1.ebuild: diff --git a/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild b/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild index e1129b5fc3cd..8fd49c9eed04 100644 --- a/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild +++ b/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild,v 1.13 2009/09/13 13:46:44 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-session/xfce4-session-4.6.1.ebuild,v 1.14 2009/10/05 21:16:49 darkside Exp $ EAPI=2 inherit flag-o-matic xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/xfce4-session/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="debug gnome gnome-keyring profile" RDEPEND="gnome-base/libglade diff --git a/xfce-base/xfce4-settings/ChangeLog b/xfce-base/xfce4-settings/ChangeLog index 968fd6d3d3ab..5f6296a1afcb 100644 --- a/xfce-base/xfce4-settings/ChangeLog +++ b/xfce-base/xfce4-settings/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for xfce-base/xfce4-settings # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/ChangeLog,v 1.19 2009/09/29 14:52:30 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/ChangeLog,v 1.20 2009/10/05 21:17:39 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> + xfce4-settings-4.6.3.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 *xfce4-settings-4.6.3 (29 Sep 2009) diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild b/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild index d2a43103fa50..4237fc0e5453 100644 --- a/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild +++ b/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild,v 1.1 2009/09/29 14:52:30 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfce4-settings/xfce4-settings-4.6.3.ebuild,v 1.2 2009/10/05 21:17:39 darkside Exp $ EAPI=2 inherit xfconf @@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/4.6/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux" IUSE="debug +keyboard libnotify sound" RDEPEND=">=dev-libs/glib-2.12:2 diff --git a/xfce-base/xfconf/ChangeLog b/xfce-base/xfconf/ChangeLog index 3cd9db365ed2..ef03fcd74d4d 100644 --- a/xfce-base/xfconf/ChangeLog +++ b/xfce-base/xfconf/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfconf # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.15 2009/08/01 21:21:53 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/ChangeLog,v 1.16 2009/10/05 21:22:30 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfconf-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xfconf-4.6.1.ebuild: Use xfconf.eclass. diff --git a/xfce-base/xfconf/xfconf-4.6.1.ebuild b/xfce-base/xfconf/xfconf-4.6.1.ebuild index b33dd54afc57..57fb98c63e87 100644 --- a/xfce-base/xfconf/xfconf-4.6.1.ebuild +++ b/xfce-base/xfconf/xfconf-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.6.1.ebuild,v 1.12 2009/08/02 10:16:31 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfconf/xfconf-4.6.1.ebuild,v 1.13 2009/10/05 21:22:30 darkside Exp $ EAPI=2 inherit flag-o-matic xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux" IUSE="debug -perl profile" RDEPEND=">=dev-libs/dbus-glib-0.72 @@ -48,7 +48,9 @@ src_install() { xfconf_src_install if use perl; then - find "${D}" -type f -name perllocal.pod -delete - find "${D}" -depth -mindepth 1 -type d -empty -delete + # Prefix compat. In Gentoo Linux, defaults to ${D} + [[ -z ${ED} ]] && local ED=${D} + find "${ED}" -type f -name perllocal.pod -delete + find "${ED}" -depth -mindepth 1 -type d -empty -delete fi } diff --git a/xfce-base/xfdesktop/ChangeLog b/xfce-base/xfdesktop/ChangeLog index 425ad8ab04f2..ee53b72dca1e 100644 --- a/xfce-base/xfdesktop/ChangeLog +++ b/xfce-base/xfdesktop/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfdesktop # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.150 2009/09/27 16:14:18 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/ChangeLog,v 1.151 2009/10/05 21:24:30 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfdesktop-4.6.1-r1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 27 Sep 2009; Samuli Suominen <ssuominen@gentoo.org> xfdesktop-4.6.1-r1.ebuild, +files/xfdesktop-4.6.1-assert.patch: diff --git a/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild b/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild index 8d963a215f52..e39998dbe32c 100644 --- a/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild +++ b/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild,v 1.2 2009/09/27 16:14:18 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfdesktop/xfdesktop-4.6.1-r1.ebuild,v 1.3 2009/10/05 21:24:30 darkside Exp $ EAPI=2 EAUTORECONF=yes @@ -13,7 +13,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/4.6/${P}.tar.bz2 LICENSE="GPL-2" SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="+branding debug doc +menu-plugin thunar" LINGUAS="be ca cs da de el es et eu fi fr he hu it ja ko nb_NO nl pa pl pt_BR ro ru sk sv tr uk vi zh_CN zh_TW" diff --git a/xfce-base/xfwm4/ChangeLog b/xfce-base/xfwm4/ChangeLog index d245bc15f86d..5eb2291fb376 100644 --- a/xfce-base/xfwm4/ChangeLog +++ b/xfce-base/xfwm4/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for xfce-base/xfwm4 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.138 2009/08/01 22:44:27 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/ChangeLog,v 1.139 2009/10/05 21:26:06 darkside Exp $ + + 05 Oct 2009; Jeremy Olexa <darkside@gentoo.org> xfwm4-4.6.1.ebuild: + Port Gentoo Prefix ebuild to gentoo-x86 01 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> xfwm4-4.6.1.ebuild: Use xfconf.eclass. diff --git a/xfce-base/xfwm4/xfwm4-4.6.1.ebuild b/xfce-base/xfwm4/xfwm4-4.6.1.ebuild index f20432243d5d..0034a090b528 100644 --- a/xfce-base/xfwm4/xfwm4-4.6.1.ebuild +++ b/xfce-base/xfwm4/xfwm4-4.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.6.1.ebuild,v 1.10 2009/08/01 22:44:27 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/xfce-base/xfwm4/xfwm4-4.6.1.ebuild,v 1.11 2009/10/05 21:26:06 darkside Exp $ EAPI=2 inherit xfconf @@ -10,7 +10,7 @@ HOMEPAGE="http://www.xfce.org/projects/xfwm4/" LICENSE="GPL-2" SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris" IUSE="debug startup-notification xcomposite" RDEPEND=">=dev-libs/glib-2.10:2 |