diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-19 18:40:25 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-03-19 18:40:25 +0000 |
commit | 03ed9ad44862621551c57c55c78992bdb1b7e2a2 (patch) | |
tree | 3a69bc5def364862cd606f66d1cb398f56ec8c99 /media-video/alevt/alevt-1.6.1-r3.ebuild | |
parent | fixing keywords on new version (diff) | |
download | gentoo-2-03ed9ad44862621551c57c55c78992bdb1b7e2a2.tar.gz gentoo-2-03ed9ad44862621551c57c55c78992bdb1b7e2a2.tar.bz2 gentoo-2-03ed9ad44862621551c57c55c78992bdb1b7e2a2.zip |
Respect LDFLAGS, add -fno-strict-aliasing, remove stale file.
(Portage version: 2.1_pre6-r4)
Diffstat (limited to 'media-video/alevt/alevt-1.6.1-r3.ebuild')
-rw-r--r-- | media-video/alevt/alevt-1.6.1-r3.ebuild | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/media-video/alevt/alevt-1.6.1-r3.ebuild b/media-video/alevt/alevt-1.6.1-r3.ebuild index e317dc0ff0b7..87d3c864ced1 100644 --- a/media-video/alevt/alevt-1.6.1-r3.ebuild +++ b/media-video/alevt/alevt-1.6.1-r3.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/alevt-1.6.1-r3.ebuild,v 1.1 2005/12/20 13:00:46 phosphan Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/alevt-1.6.1-r3.ebuild,v 1.2 2006/03/19 18:40:25 flameeyes Exp $ -inherit eutils toolchain-funcs +inherit eutils toolchain-funcs flag-o-matic DESCRIPTION="Teletext viewer for X11" HOMEPAGE="http://www.goron.de/~froese/" @@ -24,14 +24,16 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} cd ${S} - epatch ${FILESDIR}/${P}-gentoo.diff - epatch ${FILESDIR}/${P}-gcc4.patch - epatch ${DISTDIR}/${PN}-dvb.patch - epatch ${FILESDIR}/${P}-v4l2.patch + epatch "${FILESDIR}/${P}-gentoo.diff" + epatch "${FILESDIR}/${P}-gcc4.patch" + epatch "${DISTDIR}/${PN}-dvb.patch" + epatch "${FILESDIR}/${P}-v4l2.patch" + epatch "${FILESDIR}/${P}-respectflags.patch" } src_compile() { - emake CC="$(tc-getCC)" OPT="${CFLAGS}" || die + append-flags -fno-strict-aliasing + emake CC="$(tc-getCC)" || die } src_install() { |