diff options
author | Jakub Moc <jakub@gentoo.org> | 2008-01-25 14:54:02 +0000 |
---|---|---|
committer | Jakub Moc <jakub@gentoo.org> | 2008-01-25 14:54:02 +0000 |
commit | 92371f03425132f2ef58cffbd4b309916d22e6ac (patch) | |
tree | d2146a1bb888b6cf09cb59301aa54dd7c78686cf /x11-libs/seom/seom-1.0.179.ebuild | |
parent | net-p2p/freenet/freenet-0.7.1103.ebuild: New upstream release (diff) | |
download | sunrise-92371f03425132f2ef58cffbd4b309916d22e6ac.tar.gz sunrise-92371f03425132f2ef58cffbd4b309916d22e6ac.tar.bz2 sunrise-92371f03425132f2ef58cffbd4b309916d22e6ac.zip |
x11-libs/seom: Version bump and nuke undownloadable version
svn path=/sunrise/; revision=5508
Diffstat (limited to 'x11-libs/seom/seom-1.0.179.ebuild')
-rw-r--r-- | x11-libs/seom/seom-1.0.179.ebuild | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/x11-libs/seom/seom-1.0.179.ebuild b/x11-libs/seom/seom-1.0.179.ebuild deleted file mode 100644 index 4df91fbbd..000000000 --- a/x11-libs/seom/seom-1.0.179.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: $ - -inherit versionator toolchain-funcs multilib - -EMULTILIB_PKG="true" - -DESCRIPTION="OpenGL video capturing library" -HOMEPAGE="http://neopsis.com/projects/seom" - -MY_PV="$(replace_version_separator 2 '-')" -SRC_URI="http://dbservice.com/ftpdir/tom/seom/trunk/seom-${MY_PV}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -DEPEND=">=dev-lang/yasm-0.6.0" -RDEPEND="" - -src_unpack() { - for ABI in $(get_install_abis); do - unpack ${A} - mv "${PN}-${MY_PV}" "${ABI}" - done -} - -src_compile() { - for ABI in $(get_install_abis); do - cd "${WORKDIR}/${ABI}" - - econf --prefix="/usr" || die "econf failed" - emake CC="$(tc-getCC) $(get_abi_CFLAGS ${ABI})" || die "emake failed" - done -} - -src_install() { - for ABI in $(get_install_abis); do - cd "${WORKDIR}/${ABI}" - emake DESTDIR="${D}" LIBDIR="$(get_abi_LIBDIR ${ABI})" install || die "emake install failed" - done -} |