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 | ec7dd9a4fdcdd06fc13c1191a5f8cba7c297a790 (patch) | |
tree | bacd7a0ca5dbfaef1765752dad7258896ab9539e /x11-wm/pwm | |
parent | *** empty log message *** (diff) | |
download | historical-ec7dd9a4fdcdd06fc13c1191a5f8cba7c297a790.tar.gz historical-ec7dd9a4fdcdd06fc13c1191a5f8cba7c297a790.tar.bz2 historical-ec7dd9a4fdcdd06fc13c1191a5f8cba7c297a790.zip |
*** empty log message ***
Diffstat (limited to 'x11-wm/pwm')
-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 + +} |