diff options
Diffstat (limited to 'x11-plugins/wmcalc/wmcalc-0.4.ebuild')
-rw-r--r-- | x11-plugins/wmcalc/wmcalc-0.4.ebuild | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/x11-plugins/wmcalc/wmcalc-0.4.ebuild b/x11-plugins/wmcalc/wmcalc-0.4.ebuild new file mode 100644 index 000000000000..18a9d149f38e --- /dev/null +++ b/x11-plugins/wmcalc/wmcalc-0.4.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmcalc/wmcalc-0.4.ebuild,v 1.1 2004/08/15 20:38:38 s4t4n Exp $ + +inherit eutils + +DESCRIPTION="A WindowMaker DockApp calculator" +HOMEPAGE="http://freakzone.net/gordon/#wmcalc" +SRC_URI="http://freakzone.net/gordon/src/${P}.tar.gz" +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~x86 ~amd64 ~ppc" +DEPEND="virtual/x11" + +IUSE="" + +src_unpack() +{ + unpack ${A} + cd ${S} + epatch ${FILESDIR}/wmcalc-0.4-Makefile.patch +} + +src_compile() +{ + emake || die +} + +src_install () +{ + dobin wmcalc + + dodoc README COPYING + + newman ${FILESDIR}/wmcalc.man wmcalc.1 + + insinto /etc + newins .wmcalc wmcalc.conf + + insinto /etc/skel + doins .wmcalc +} |