diff options
author | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-09-20 17:14:52 +0000 |
---|---|---|
committer | Brad Teaford Cowan <bcowan@gentoo.org> | 2004-09-20 17:14:52 +0000 |
commit | 3718b4e91c00ea0c4f19528fe33879ae90db6e8b (patch) | |
tree | e193934aec496bc26d4c3f66eb54c22f79627131 /xfce-extra/xfce4-windowlist | |
parent | dev-lang/ruby -> virtual/ruby (diff) | |
download | gentoo-2-3718b4e91c00ea0c4f19528fe33879ae90db6e8b.tar.gz gentoo-2-3718b4e91c00ea0c4f19528fe33879ae90db6e8b.tar.bz2 gentoo-2-3718b4e91c00ea0c4f19528fe33879ae90db6e8b.zip |
Initial import.
Diffstat (limited to 'xfce-extra/xfce4-windowlist')
-rw-r--r-- | xfce-extra/xfce4-windowlist/ChangeLog | 10 | ||||
-rw-r--r-- | xfce-extra/xfce4-windowlist/Manifest | 2 | ||||
-rw-r--r-- | xfce-extra/xfce4-windowlist/files/digest-xfce4-windowlist-0.1.0 | 1 | ||||
-rw-r--r-- | xfce-extra/xfce4-windowlist/metadata.xml | 5 | ||||
-rw-r--r-- | xfce-extra/xfce4-windowlist/xfce4-windowlist-0.1.0.ebuild | 26 |
5 files changed, 44 insertions, 0 deletions
diff --git a/xfce-extra/xfce4-windowlist/ChangeLog b/xfce-extra/xfce4-windowlist/ChangeLog new file mode 100644 index 000000000000..76258b68ab9b --- /dev/null +++ b/xfce-extra/xfce4-windowlist/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for xfce-extra/xfce4-windowlist +# Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-windowlist/ChangeLog,v 1.1 2004/09/20 17:10:38 bcowan Exp $ + +*xfce4-windowlist-0.1.0 (20 Sep 2004) + + 20 Sep 2004; Brad Cowan <bcowan@gentoo.org> +metadata.xml, + +xfce4-windowlist-0.1.0.ebuild: + Initial import. + diff --git a/xfce-extra/xfce4-windowlist/Manifest b/xfce-extra/xfce4-windowlist/Manifest new file mode 100644 index 000000000000..03c70df354c1 --- /dev/null +++ b/xfce-extra/xfce4-windowlist/Manifest @@ -0,0 +1,2 @@ +MD5 f077a8925a03bfe61894702eec015e77 xfce4-windowlist-0.1.0.ebuild 725 +MD5 ede2fb1d0a92f8c2aa944bb0134a181a files/digest-xfce4-windowlist-0.1.0 81 diff --git a/xfce-extra/xfce4-windowlist/files/digest-xfce4-windowlist-0.1.0 b/xfce-extra/xfce4-windowlist/files/digest-xfce4-windowlist-0.1.0 new file mode 100644 index 000000000000..cc3674db818d --- /dev/null +++ b/xfce-extra/xfce4-windowlist/files/digest-xfce4-windowlist-0.1.0 @@ -0,0 +1 @@ +MD5 29b1a752003734c0b8171200dfafb733 xfce4-windowlist-plugin-0.1.0.tar.gz 301770 diff --git a/xfce-extra/xfce4-windowlist/metadata.xml b/xfce-extra/xfce4-windowlist/metadata.xml new file mode 100644 index 000000000000..826e2ca93209 --- /dev/null +++ b/xfce-extra/xfce4-windowlist/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-windowlist/xfce4-windowlist-0.1.0.ebuild b/xfce-extra/xfce4-windowlist/xfce4-windowlist-0.1.0.ebuild new file mode 100644 index 000000000000..19e443db5618 --- /dev/null +++ b/xfce-extra/xfce4-windowlist/xfce4-windowlist-0.1.0.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/xfce-extra/xfce4-windowlist/xfce4-windowlist-0.1.0.ebuild,v 1.1 2004/09/20 17:10:38 bcowan Exp $ + +IUSE="" +MY_P="${PN}-plugin-${PV}" +S=${WORKDIR}/${MY_P/-${PV}/} + +DESCRIPTION="Xfce4 panel windowlist plugin" +HOMEPAGE="http://www.xfce.org/" +SRC_URI="http://download.berlios.de/xfce-goodies/${MY_P}.tar.gz" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~ia64 ~x86 ~ppc ~alpha ~sparc ~amd64 ~hppa ~mips ~ppc64" + +RDEPEND=">=x11-libs/gtk+-2.0.6 + dev-libs/libxml2 + xfce-base/xfce4-base" +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +src_install() { + make DESTDIR=${D} install || die + dodoc AUTHORS INSTALL COPYING README +} |