summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorD.M.D. Ljungmark <spider@gentoo.org>2002-05-28 16:20:16 +0000
committerD.M.D. Ljungmark <spider@gentoo.org>2002-05-28 16:20:16 +0000
commit93f5cf8dd3329ebb8f374e84950d0ca6cbe31a17 (patch)
tree9626db2c7fc7fd9aba9ff4851c3816a21ce725b8 /x11-misc
parentfirst realse (diff)
downloadgentoo-2-93f5cf8dd3329ebb8f374e84950d0ca6cbe31a17.tar.gz
gentoo-2-93f5cf8dd3329ebb8f374e84950d0ca6cbe31a17.tar.bz2
gentoo-2-93f5cf8dd3329ebb8f374e84950d0ca6cbe31a17.zip
metacity-setup is a utility to configure metacity
Diffstat (limited to 'x11-misc')
-rw-r--r--x11-misc/metacity-setup/ChangeLog7
-rw-r--r--x11-misc/metacity-setup/files/digest-metacity-setup-0.3.11
-rw-r--r--x11-misc/metacity-setup/metacity-setup-0.3.1.ebuild30
3 files changed, 38 insertions, 0 deletions
diff --git a/x11-misc/metacity-setup/ChangeLog b/x11-misc/metacity-setup/ChangeLog
new file mode 100644
index 000000000000..a3531febff74
--- /dev/null
+++ b/x11-misc/metacity-setup/ChangeLog
@@ -0,0 +1,7 @@
+# ChangeLog for x11-misc/metacity-setup
+# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/metacity-setup/ChangeLog,v 1.1 2002/05/28 16:20:16 spider Exp $
+
+*metacity-setup-0.3.1 (28 May 2002)
+ 28 May 2002; Spider <spider@gentoo.org> ChangeLog metacity-setup-0.3.1.ebuild :
+ here you go, initial release
diff --git a/x11-misc/metacity-setup/files/digest-metacity-setup-0.3.1 b/x11-misc/metacity-setup/files/digest-metacity-setup-0.3.1
new file mode 100644
index 000000000000..4abf7530c51b
--- /dev/null
+++ b/x11-misc/metacity-setup/files/digest-metacity-setup-0.3.1
@@ -0,0 +1 @@
+MD5 5d023fa26f7e0e92739ae53e1e614047 metacity-setup-0.3.1.tar.gz 73040
diff --git a/x11-misc/metacity-setup/metacity-setup-0.3.1.ebuild b/x11-misc/metacity-setup/metacity-setup-0.3.1.ebuild
new file mode 100644
index 000000000000..866ae5870e45
--- /dev/null
+++ b/x11-misc/metacity-setup/metacity-setup-0.3.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/metacity-setup/metacity-setup-0.3.1.ebuild,v 1.1 2002/05/28 16:20:16 spider Exp $
+
+DESCRIPTION="a setup program for metacity"
+HOMEPAGE="http://plastercast.tzo.com/~plastercast/Projects/"
+LICENSE="GPL-2"
+
+DEPEND="x11-wm/metacity
+ =x11-libs/gtk+-2.0*
+ =dev-libs/glib-2.0*
+ gnome-base/libgnomeui"
+RDEPEND="${DEPEND}"
+SRC_URI="http://plastercast.tzo.com/~plastercast/Projects/${P}.tar.gz"
+S=${WORKDIR}/${P}
+
+
+src_compile() {
+ ./configure \
+ --host=${CHOST} \
+ --prefix=/usr \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man || die "./configure failed"
+ emake || die
+}
+
+src_install () {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
+}