diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-25 08:43:52 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-08-25 08:43:52 +0000 |
commit | a86d0c6a7d7903d4387a980a3df4e30bd6164224 (patch) | |
tree | 3bfff24e8c1f647eb04bd1d5701708e07eceff09 /xfce-extra/xfce4-eyes-plugin | |
parent | Backport some fixes to get latest stable utils building (like iproute2/udev). (diff) | |
download | gentoo-2-a86d0c6a7d7903d4387a980a3df4e30bd6164224.tar.gz gentoo-2-a86d0c6a7d7903d4387a980a3df4e30bd6164224.tar.bz2 gentoo-2-a86d0c6a7d7903d4387a980a3df4e30bd6164224.zip |
Rename xfce4-eyes to xfce4-eyes-plugin.
(Portage version: 2.2_rc40/cvs/Linux x86_64, RepoMan options: --force)
Diffstat (limited to 'xfce-extra/xfce4-eyes-plugin')
4 files changed, 64 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-eyes-plugin/ChangeLog b/xfce-extra/xfce4-eyes-plugin/ChangeLog new file mode 100644 index 000000000000..35dc9ff00ed4 --- /dev/null +++ b/xfce-extra/xfce4-eyes-plugin/ChangeLog @@ -0,0 +1,11 @@ +# ChangeLog for xfce-extra/xfce4-eyes-plugin +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/ChangeLog,v 1.1 2009/08/25 08:43:52 ssuominen Exp $ + +*xfce4-eyes-plugin-4.4.0 (25 Aug 2009) + + 25 Aug 2009; Samuli Suominen <ssuominen@gentoo.org> + +xfce4-eyes-plugin-4.4.0.ebuild, + +files/xfce4-eyes-plugin-4.4.0-libtool.patch: + Rename xfce4-eyes to xfce4-eyes-plugin. + diff --git a/xfce-extra/xfce4-eyes-plugin/files/xfce4-eyes-plugin-4.4.0-libtool.patch b/xfce-extra/xfce4-eyes-plugin/files/xfce4-eyes-plugin-4.4.0-libtool.patch new file mode 100644 index 000000000000..f74d87669810 --- /dev/null +++ b/xfce-extra/xfce4-eyes-plugin/files/xfce4-eyes-plugin-4.4.0-libtool.patch @@ -0,0 +1,10 @@ +--- xfce4-eyes-plugin-4.4.0/configure.in.orig 2008-09-21 20:57:00.000000000 +0200 ++++ xfce4-eyes-plugin-4.4.0/configure.in 2008-09-21 20:57:09.000000000 +0200 +@@ -36,6 +36,7 @@ + AC_PROG_CC() + AC_PROG_LD() + AC_PROG_INSTALL() ++AC_PROG_LIBTOOL() + AC_PROG_INTLTOOL() + + dnl ********************************** diff --git a/xfce-extra/xfce4-eyes-plugin/metadata.xml b/xfce-extra/xfce4-eyes-plugin/metadata.xml new file mode 100644 index 000000000000..d56729e92f8e --- /dev/null +++ b/xfce-extra/xfce4-eyes-plugin/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>xfce</herd> +</pkgmetadata> diff --git a/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.0.ebuild b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.0.ebuild new file mode 100644 index 000000000000..99415c990598 --- /dev/null +++ b/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.0.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-eyes-plugin/xfce4-eyes-plugin-4.4.0.ebuild,v 1.1 2009/08/25 08:43:52 ssuominen Exp $ + +EAUTORECONF=yes +EINTLTOOLIZE=yes +EAPI=2 +inherit xfconf + +DESCRIPTION="panel plugin that adds eyes which watch your every step" +HOMEPAGE="http://www.xfce.org/" +SRC_URI="mirror://xfce/src/panel-plugins/${PN}/4.4/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="debug" + +RDEPEND=">=x11-libs/gtk+-2.6:2 + >=xfce-base/xfce4-panel-4.3.99.1 + >=xfce-base/libxfce4util-4.3.90.2 + >=xfce-base/libxfcegui4-4.3.90.2" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-util/intltool" + +pkg_setup() { + PATCHES=( "${FILESDIR}/${P}-libtool.patch" ) + DOCS="AUTHORS ChangeLog README" + XFCONF="--disable-dependency-tracking + $(use_enable debug)" +} + +src_prepare() { + sed -i -e "/^AC_INIT/s/eyes_version()/eyes_version/" \ + configure.in || die "sed failed" + xfconf_src_prepare +} |