# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-tcltk/ck/ck-8.0.ebuild,v 1.12 2011/12/12 09:10:27 jlec Exp $ MY_P=${PN}${PV} S=${WORKDIR}/${MY_P} DESCRIPTION="A curses based toolkit for tcl" HOMEPAGE="http://www.ch-werner.de/ck/" SRC_URI="http://www.ch-werner.de/ck/${MY_P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="x86" IUSE="" DEPEND="dev-lang/tk sys-apps/sed" RDEPEND="${DEPEND}" src_compile() { local myconf="--with-tcl=/usr/lib --enable-shared" econf ${myconf} emake CFLAGS="${CFLAGS}" || die # patch Makefile sed -i -e "s:mkdir:mkdir -p:g" \ -e "s|install: |install: install-man |" Makefile || die } src_install() { dodoc README || die einstall || die "Failed to install." }