diff options
author | Nick Hadaway <raker@gentoo.org> | 2002-10-04 14:49:33 +0000 |
---|---|---|
committer | Nick Hadaway <raker@gentoo.org> | 2002-10-04 14:49:33 +0000 |
commit | b72585ae0af8b889023fc6f7ad146f3707d8fc38 (patch) | |
tree | 022b9dbe4a7b763bb3a806a1083c7ebb4f8f99a7 /x11-plugins/wmcp/wmcp-1.2.8.ebuild | |
parent | Upped dependancy to >=fltk-1.1.0_rc7 and included virtual/x11. Added (diff) | |
download | gentoo-2-b72585ae0af8b889023fc6f7ad146f3707d8fc38.tar.gz gentoo-2-b72585ae0af8b889023fc6f7ad146f3707d8fc38.tar.bz2 gentoo-2-b72585ae0af8b889023fc6f7ad146f3707d8fc38.zip |
Initial add of ebuild to portage. A pager dockapp.
Diffstat (limited to 'x11-plugins/wmcp/wmcp-1.2.8.ebuild')
-rw-r--r-- | x11-plugins/wmcp/wmcp-1.2.8.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/wmcp/wmcp-1.2.8.ebuild b/x11-plugins/wmcp/wmcp-1.2.8.ebuild new file mode 100644 index 000000000000..58fb14b61716 --- /dev/null +++ b/x11-plugins/wmcp/wmcp-1.2.8.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcp/wmcp-1.2.8.ebuild,v 1.1 2002/10/04 14:49:33 raker Exp $ + +S="${WORKDIR}/${P}" + +DESCRIPTION="A pager dockapp" +HOMEPAGE="http://www.the.page.doesnt.seem.to.exist.anymore.com" +SRC_URI="http://linux-sea.tucows.webusenet.com/files/x11/dock/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" + +DEPEND="virtual/glibc + virtual/x11" +RDEPEND="${DEPEND}" + +src_unpack() { + + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/makefile.diff || die "patch failed" + +} + +src_compile() { + + make || die "make failed" + +} + +src_install() { + + cd ${S} + dobin wmcp + +} |