diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2002-06-24 01:28:13 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2002-06-24 01:28:13 +0000 |
commit | 14d595901b2f9fcf7b080c44c7e97e4a250f2c3c (patch) | |
tree | 1c26c3a78f3bf99acd29f6ea6c68a49f42b75245 /x11-wm/metacity | |
parent | move libexec (diff) | |
download | historical-14d595901b2f9fcf7b080c44c7e97e4a250f2c3c.tar.gz historical-14d595901b2f9fcf7b080c44c7e97e4a250f2c3c.tar.bz2 historical-14d595901b2f9fcf7b080c44c7e97e4a250f2c3c.zip |
move libexec
Diffstat (limited to 'x11-wm/metacity')
-rw-r--r-- | x11-wm/metacity/ChangeLog | 7 | ||||
-rw-r--r-- | x11-wm/metacity/files/digest-metacity-2.3.987-r1 | 1 | ||||
-rw-r--r-- | x11-wm/metacity/metacity-2.3.987-r1.ebuild | 66 |
3 files changed, 73 insertions, 1 deletions
diff --git a/x11-wm/metacity/ChangeLog b/x11-wm/metacity/ChangeLog index 886dee5bc19a..a11f9f8a322c 100644 --- a/x11-wm/metacity/ChangeLog +++ b/x11-wm/metacity/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-wm/metacity # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.5 2002/06/10 09:30:40 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/ChangeLog,v 1.6 2002/06/24 01:28:13 azarah Exp $ + +* metacity-2.3.987-r1.ebuild (24 Jun 2002) + + 24 Jun 2002; Martin Schlemmer <azarah@gentoo.org> : + Move /usr/libexec/* to /usr/lib/. * metacity-2.3.987.ebuild (10 Jun 2002) 10 Jun 2002; Gabriele Giorgetti <stroke@gentoo.org> ChangeLog : diff --git a/x11-wm/metacity/files/digest-metacity-2.3.987-r1 b/x11-wm/metacity/files/digest-metacity-2.3.987-r1 new file mode 100644 index 000000000000..a3cbf7b940d9 --- /dev/null +++ b/x11-wm/metacity/files/digest-metacity-2.3.987-r1 @@ -0,0 +1 @@ +MD5 f13b9484893cdf0e0716c6becde8cdaf metacity-2.3.987.tar.gz 900738 diff --git a/x11-wm/metacity/metacity-2.3.987-r1.ebuild b/x11-wm/metacity/metacity-2.3.987-r1.ebuild new file mode 100644 index 000000000000..36af24e7f50c --- /dev/null +++ b/x11-wm/metacity/metacity-2.3.987-r1.ebuild @@ -0,0 +1,66 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-wm/metacity/metacity-2.3.987-r1.ebuild,v 1.1 2002/06/24 01:28:13 azarah Exp $ + +# Do _NOT_ strip symbols in the build! Need both lines for Portage 1.8.9+ +DEBUG="yes" +RESTRICT="nostrip" +# force debug information +CFLAGS="${CFLAGS} -g" +CXXFLAGS="${CXXFLAGS} -g" + + +S=${WORKDIR}/${P} +DESCRIPTION="Small gtk2 WindowManager" +SRC_URI="http://people.redhat.com/~hp/metacity/${P}.tar.gz" +HOMEPAGE="http://people.redhat.com/~hp/metacity/" +SLOT="1" +LICENSE="GPL-2" + + +RDEPEND=">=dev-libs/glib-2.0.3 + >=x11-libs/pango-1.0.2 + >=x11-libs/gtk+-2.0.3 + >=gnome-base/gconf-1.1.11 + >=net-libs/linc-0.1.20 + >=gnome-base/ORBit2-2.4.0" + + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0" + +src_compile() { + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --libexecdir=/usr/lib/${PN} \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --enable-platform-gnome-2 \ + --enable-debug=yes || die + emake || die +} + +src_install() { + export GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL="1" + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + libexecdir=${D}/usr/lib/${PN} \ + infodir=${D}/usr/share/info \ + mandir=${D}/usr/share/man \ + install || die + unset GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL + + dodoc AUTHORS COPYING ChangeLog HACKING INSTALL NEWS README +} + +pkg_postinst() { + echo ">>> updating GConf2" + export GCONF_CONFIG_SOURCE=`gconftool-2 --get-default-source` + for SCHEMA in metacity.schemas ; do + echo $SCHEMA + /usr/bin/gconftool-2 --makefile-install-rule \ + /etc/gconf/schemas/${SCHEMA} + done +} + |