# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ DESCRIPTION="libipod - a library for managing the Apple iPod" HOMEPAGE="http://libipod.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tgz" LICENSE="LGPL" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="virtual/python >=dev-python/sip-4" src_compile() { econf || die "econf failed" emake || die "emake failed" einfo "Building python library..." cd ${S}/python python configure.py make } src_install() { cd ${S} make install DESTDIR=${D} || die "make install failed" cd ${S}/python make install DESTDIR=${D} || die "make install failed" }