diff options
author | Thomas Sachau <tommy@gentoo.org> | 2008-04-05 17:40:32 +0000 |
---|---|---|
committer | Thomas Sachau <tommy@gentoo.org> | 2008-04-05 17:40:32 +0000 |
commit | c616df25b753e28ddc1a2b02168972b977559337 (patch) | |
tree | 55214c3aa547a333ddbcdeeae2c2531207144b49 /x11-libs/seom/seom-1.0.192.ebuild | |
parent | media-gfx/fontmatrix: Add removed metadata.xml and missing Manifest (diff) | |
download | sunrise-c616df25b753e28ddc1a2b02168972b977559337.tar.gz sunrise-c616df25b753e28ddc1a2b02168972b977559337.tar.bz2 sunrise-c616df25b753e28ddc1a2b02168972b977559337.zip |
x11-libs/seom: Ebuild cleanup, patch by drac "<drac> tested it on stable amd64, worked fine with yasm etc."
svn path=/sunrise/; revision=5984
Diffstat (limited to 'x11-libs/seom/seom-1.0.192.ebuild')
-rw-r--r-- | x11-libs/seom/seom-1.0.192.ebuild | 29 |
1 files changed, 7 insertions, 22 deletions
diff --git a/x11-libs/seom/seom-1.0.192.ebuild b/x11-libs/seom/seom-1.0.192.ebuild index 413a5c9f6..28a3d6f1d 100644 --- a/x11-libs/seom/seom-1.0.192.ebuild +++ b/x11-libs/seom/seom-1.0.192.ebuild @@ -2,41 +2,26 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: $ -inherit versionator toolchain-funcs multilib - -EMULTILIB_PKG="true" +inherit multilib toolchain-funcs DESCRIPTION="OpenGL video capturing library" HOMEPAGE="http://neopsis.com/projects/seom" - SRC_URI="http://dbservice.com/ftpdir/tom/seom/trunk/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE="" -DEPEND=">=dev-lang/yasm-0.6.0" RDEPEND="" - -src_unpack() { - for ABI in $(get_install_abis); do - unpack ${A} - mv "${P}" "${ABI}" - done -} +DEPEND=">=dev-lang/yasm-0.6.0" src_compile() { - for ABI in $(get_install_abis); do - cd "${WORKDIR}/${ABI}" - - econf --arch="${ABI}" --prefix="/usr" || die "econf failed" - emake CC="$(tc-getCC)" $(get_abi_CFLAGS ${ABI}) || die "emake failed" - done + unset ARCH + econf --cflags="${CFLAGS}" + emake CC="$(tc-getCC)" || die "emake failed." } 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 + emake DESTDIR="${D}" LIBDIR="$(get_libdir)" install || die "emake install failed." } |