diff options
Diffstat (limited to 'x11-misc/lsw/lsw-9999.ebuild')
-rw-r--r-- | x11-misc/lsw/lsw-9999.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/x11-misc/lsw/lsw-9999.ebuild b/x11-misc/lsw/lsw-9999.ebuild new file mode 100644 index 000000000..928084a43 --- /dev/null +++ b/x11-misc/lsw/lsw-9999.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +inherit mercurial toolchain-funcs + +DESCRIPTION="list window names" +HOMEPAGE="http://tools.suckless.org/view/x+tools" +SRC_URI="" +EHG_REPO_URI=http://suckless.org/cgi-bin/hgwebdir.cgi/${PN} + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +DEPEND="x11-libs/libX11" +RDEPEND=${DEPEND} + +S=${WORKDIR}/${PN} + +src_unpack() { + mercurial_src_unpack + cd "${S}" + + sed -i \ + -e "s/.*strip.*//" \ + Makefile || die "sed failed" + + sed -i \ + -e "s/CFLAGS = -Os/CFLAGS +=/" \ + -e "s/LDFLAGS =/LDFLAGS +=/" \ + config.mk || die "sed failed" +} + +src_compile() { + emake CC=$(tc-getCC) || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" PREFIX="/usr" install || die "emake install failed" + + dodoc README +} |