# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit subversion ESVN_REPO_URI="svn://neopsis.com/big/svn/seom/trunk" DESCRIPTION="seom video capturing library" HOMEPAGE="http://neopsis.com/projects/seom" SRC_URI="" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* ~amd64 ~x86" RDEPEND="x11-base/xorg-server dev-lang/yasm" S="${WORKDIR}/trunk" src_unpack() { subversion_src_unpack local SRC="${ESVN_STORE_DIR}/${ESVN_PROJECT}/${ESVN_REPO_URI##*/}" echo "1.0-$(svn info ${SRC} | grep Revision | sed 's#Revision: ##')" >> ${S}/VERSION } src_compile() { ./configure --prefix="/usr" || die "./configure failed" make || die "make failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" }