DESCRIPTION="Library for LingoTeach" HOMEPAGE="http://www.lingoteach.org/" SRC_URI="http://download.sourceforge.net/lingoteach/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" # Comprehensive list of any and all USE flags leveraged in the ebuild, # with the exception of any ARCH specific flags, i.e. "ppc", "sparc", # "x86" and "alpha". This is a required variable. If the # ebuild doesn't use any USE flags, set to "". IUSE="zlib debug" DEPEND="dev-util/pkgconfig dev-libs/libxml2 zlib? ( sys-libs/zlib )" src_compile() { econf \ `use_enable debug` \ `use_enable zlib compression` \ || die "Configure failure" emake || die "Make failure" } src_install() { einstall || die "make install failure" dodoc AUTHORS COPYING ChangeLog HACKING NEWS README }