diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-02-06 07:19:50 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-02-06 07:19:50 +0000 |
commit | d3b62287af3e69ebafe5e97aac568c2f315d7061 (patch) | |
tree | 53cbffc576129587bc4cb514cdaa1a4f7dd42f10 /x11-wm | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-d3b62287af3e69ebafe5e97aac568c2f315d7061.tar.gz gentoo-2-d3b62287af3e69ebafe5e97aac568c2f315d7061.tar.bz2 gentoo-2-d3b62287af3e69ebafe5e97aac568c2f315d7061.zip |
*** empty log message ***
Diffstat (limited to 'x11-wm')
-rw-r--r-- | x11-wm/pwm/files/digest-pwm-1.0 | 1 | ||||
-rw-r--r-- | x11-wm/pwm/pwm-1.0.ebuild | 39 |
2 files changed, 40 insertions, 0 deletions
diff --git a/x11-wm/pwm/files/digest-pwm-1.0 b/x11-wm/pwm/files/digest-pwm-1.0 new file mode 100644 index 000000000000..7b699abc4c66 --- /dev/null +++ b/x11-wm/pwm/files/digest-pwm-1.0 @@ -0,0 +1 @@ +MD5 9a1efe73f597a3303aa94b8d0136779d pwm-1.0.tar.gz diff --git a/x11-wm/pwm/pwm-1.0.ebuild b/x11-wm/pwm/pwm-1.0.ebuild new file mode 100644 index 000000000000..d08dac06fbcf --- /dev/null +++ b/x11-wm/pwm/pwm-1.0.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Ryan Tolboom <ryan@intphsys.com> +# $Header: /var/cvsroot/gentoo-x86/x11-wm/pwm/pwm-1.0.ebuild,v 1.1 2001/02/06 07:19:50 achim Exp $ + +S=${WORKDIR}/pwm-1.0 +SRC_URI="http://www.students.tut.fi/~tuomov/dl/pwm-1.0.tar.gz" + +HOMEPAGE="http://www.students.tut.fi/~tuomov/pwm" + +DESCRIPTION="A lightweight window manager" + +DEPEND=">=x11-base/xfree-4.0.1" + + +src_unpack() { + + unpack ${A} + cd ${S} + cp config.h config.orig + sed -e "s:PREFIX\"/etc/pwm/\":\"/etc/X11/pwm/\":" \ + config.orig > config.h + cp system.mk system.orig + sed -e "s:-g -O2:${CFLAGS}:" system.orig > system.mk + +} + +src_compile() { + + try make + +} + +src_install() { + + try make PREFIX=${D}/usr/X11R6 ETCDIR=${D}/etc/X11 DOCDIR=${D}/usr/doc/${PF} install + dodoc config.txt + +} |