summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Houser <chouser@gentoo.org>2003-04-03 18:09:14 +0000
committerChris Houser <chouser@gentoo.org>2003-04-03 18:09:14 +0000
commit031924b8e2e1430a1034d0161ad85e37092318f8 (patch)
tree73e83c81b992156a24be723efa9ef6f444b5f994 /x11-wm/plwm
parentInitial release. This ebuild was submitted by Gontran Zepeda <gontran@gontran... (diff)
downloadhistorical-031924b8e2e1430a1034d0161ad85e37092318f8.tar.gz
historical-031924b8e2e1430a1034d0161ad85e37092318f8.tar.bz2
historical-031924b8e2e1430a1034d0161ad85e37092318f8.zip
- Initial ebuild
Diffstat (limited to 'x11-wm/plwm')
-rw-r--r--x11-wm/plwm/ChangeLog8
-rw-r--r--x11-wm/plwm/files/digest-plwm-2.51
-rw-r--r--x11-wm/plwm/plwm-2.5.ebuild37
3 files changed, 46 insertions, 0 deletions
diff --git a/x11-wm/plwm/ChangeLog b/x11-wm/plwm/ChangeLog
new file mode 100644
index 000000000000..54c48caaa73d
--- /dev/null
+++ b/x11-wm/plwm/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for x11-wm/plwm
+# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/ChangeLog,v 1.1 2003/04/03 18:09:14 chouser Exp $
+
+*plwm-2.5 (03 Apr 2003)
+
+ 03 Apr 2003; Chris Houser <chouser@gentoo.com> plwm-2.5.ebuild,
+ files/digest-plwm-2.5 : Initial import.
diff --git a/x11-wm/plwm/files/digest-plwm-2.5 b/x11-wm/plwm/files/digest-plwm-2.5
new file mode 100644
index 000000000000..8db3914e8046
--- /dev/null
+++ b/x11-wm/plwm/files/digest-plwm-2.5
@@ -0,0 +1 @@
+MD5 a8615ddbc746e93d5c396ee8f3a87d48 plwm-2.5.tar.gz 12724
diff --git a/x11-wm/plwm/plwm-2.5.ebuild b/x11-wm/plwm/plwm-2.5.ebuild
new file mode 100644
index 000000000000..19fd83e90ae1
--- /dev/null
+++ b/x11-wm/plwm/plwm-2.5.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2003 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-wm/plwm/plwm-2.5.ebuild,v 1.1 2003/04/03 18:09:14 chouser Exp $
+
+DESCRIPTION="Python classes for, and an implementation of, a window manager."
+
+HOMEPAGE="http://plwm.sourceforge.net/"
+SRC_URI="mirror://sourceforge/plwm/${P}.tar.gz"
+
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="alpha"
+IUSE=""
+DEPEND=">=dev-lang/python-2.2.2"
+RDEPEND=">=dev-lang/python-2.2.2
+ >=dev-python/python-xlib-0.12"
+
+src_compile() {
+ econf || die "econf failed for ${P}"
+}
+
+src_install() {
+ # bulk of the package
+ make \
+ prefix="${D}/usr" \
+ PLWM_PATH="${D}"'$(PYTHON_SITE_PATH)/plwm' \
+ install \
+ || die "make install failed for ${P}"
+
+ # info page
+ make -C doc || die "make info docs failed for ${P}"
+ doinfo doc/*.info* || die "doinfo failed for ${P}"
+
+ # other docs
+ dodoc README NEWS ONEWS examples/* || die "dodoc failed for ${P}"
+}