diff options
author | Ben Lutgens <lamer@gentoo.org> | 2001-08-02 04:35:59 +0000 |
---|---|---|
committer | Ben Lutgens <lamer@gentoo.org> | 2001-08-02 04:35:59 +0000 |
commit | bb1d55d68d6b6d09fea5dc6e7d8836705a4f906e (patch) | |
tree | d7659820ba983f6e92f34253795e129a44603ce6 /x11-wm/oroborus | |
parent | Tools to manipulate dos filesystems (mkdosfs, dosfsck) (diff) | |
download | gentoo-2-bb1d55d68d6b6d09fea5dc6e7d8836705a4f906e.tar.gz gentoo-2-bb1d55d68d6b6d09fea5dc6e7d8836705a4f906e.tar.bz2 gentoo-2-bb1d55d68d6b6d09fea5dc6e7d8836705a4f906e.zip |
Added a new windowmanager and some little utils for it. Gento makes the
second distro this one is packaged for. Someone from debian beat us to it.
Diffstat (limited to 'x11-wm/oroborus')
-rw-r--r-- | x11-wm/oroborus/files/digest-oroborus-2.0.1 | 1 | ||||
-rw-r--r-- | x11-wm/oroborus/oroborus-2.0.1.ebuild | 27 |
2 files changed, 28 insertions, 0 deletions
diff --git a/x11-wm/oroborus/files/digest-oroborus-2.0.1 b/x11-wm/oroborus/files/digest-oroborus-2.0.1 new file mode 100644 index 000000000000..463839cef067 --- /dev/null +++ b/x11-wm/oroborus/files/digest-oroborus-2.0.1 @@ -0,0 +1 @@ +MD5 4344d6093f83e560550b7c7c05960a2d oroborus-2.0.1.tar.gz diff --git a/x11-wm/oroborus/oroborus-2.0.1.ebuild b/x11-wm/oroborus/oroborus-2.0.1.ebuild new file mode 100644 index 000000000000..a4be00c8a9fe --- /dev/null +++ b/x11-wm/oroborus/oroborus-2.0.1.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2001 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ben Lutgens <lamer@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/x11-wm/oroborus/oroborus-2.0.1.ebuild,v 1.1 2001/08/02 04:35:59 lamer Exp $ + +S=${WORKDIR}/${P} +DESCRIPTION="Yet another window manager" +SRC_URI="http://www.kensden.pwp.blueyonder.co.uk/Oroborus/files/${P}.tar.gz" +HOMEPAGE="http://www.kensden.pwp.blueyonder.co.uk/Oroborus" +DEPEND="" + +#RDEPEND="" + +src_compile() { + try ./configure --infodir=/usr/share/info --mandir=/usr/share/man --prefix=/usr --host=${CHOST} + + try make +} + +src_install () { + + # try make prefix=${D}/usr install + + try make DESTDIR=${D} install + dodoc README INSTALL ChangeLog TODO NEWS AUTHORS example.oroborusrc +} + |