diff options
Diffstat (limited to 'x11-misc/wmakerconf/wmakerconf-2.11.ebuild')
-rw-r--r-- | x11-misc/wmakerconf/wmakerconf-2.11.ebuild | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/x11-misc/wmakerconf/wmakerconf-2.11.ebuild b/x11-misc/wmakerconf/wmakerconf-2.11.ebuild new file mode 100644 index 000000000000..e4638fef86ea --- /dev/null +++ b/x11-misc/wmakerconf/wmakerconf-2.11.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/wmakerconf/wmakerconf-2.11.ebuild,v 1.1 2005/03/18 06:07:54 fafhrd Exp $ + +inherit eutils + +DESCRIPTION="X based config tool for the windowmaker X windowmanager." +SRC_URI="http://www.starplot.org/wmakerconf/${P}.tar.gz" +HOMEPAGE="http://www.starplot.org/wmakerconf/" + +SLOT="0" +LICENSE="GPL-2" +KEYWORDS="~ppc ~x86" + +IUSE="nls imlib perl" + +DEPEND="=x11-libs/gtk+-2* + >=x11-wm/windowmaker-0.90.0 + imlib? ( media-libs/imlib )" + +RDEPEND="${DEPEND} + nls? ( sys-devel/gettext ) + perl? ( dev-lang/perl + dev-perl/HTML-Parser + dev-perl/libwww-perl + www-client/lynx + net-misc/wget )" + +src_compile() { + local myconf + + use nls || myconf="${myconf} --disable-nls" + use imlib || myconf="${myconf} --disable-imlibtest" + if use perl; then + myconf="${myconf} --enable-upgrade" + fi + + econf ${myconf} || die "configure failed" + emake || die "make failed" +} + +src_install() { + emake DESTDIR=${D} \ + gnulocaledir=${D}/usr/share/locale \ + install || die "install failed" + + dodoc README NEWS INSTALL MANUAL AUTHORS TODO COPYING ChangeLog + doman man/* +} + |