diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-04 18:54:46 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-06-04 18:54:46 +0000 |
commit | 5fea65b6c730b9e2dedcdf92213546954016c7f4 (patch) | |
tree | 6e0518b12ee7dbb14ca0845c66f53e56405a6364 /media-sound/fmtools | |
parent | old (diff) | |
download | gentoo-2-5fea65b6c730b9e2dedcdf92213546954016c7f4.tar.gz gentoo-2-5fea65b6c730b9e2dedcdf92213546954016c7f4.tar.bz2 gentoo-2-5fea65b6c730b9e2dedcdf92213546954016c7f4.zip |
Some QA.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/fmtools')
-rw-r--r-- | media-sound/fmtools/fmtools-1.0.2.ebuild | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/media-sound/fmtools/fmtools-1.0.2.ebuild b/media-sound/fmtools/fmtools-1.0.2.ebuild index ef6284f0a439..b590c2bf2c58 100644 --- a/media-sound/fmtools/fmtools-1.0.2.ebuild +++ b/media-sound/fmtools/fmtools-1.0.2.ebuild @@ -1,7 +1,8 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-1.0.2.ebuild,v 1.1 2007/07/27 19:40:28 drac Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/fmtools/fmtools-1.0.2.ebuild,v 1.2 2009/06/04 18:54:46 ssuominen Exp $ +EAPI=2 inherit toolchain-funcs DESCRIPTION="A collection of programs for controlling v4l radio card drivers." @@ -10,17 +11,18 @@ SRC_URI="http://www.stanford.edu/~blp/${PN}/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" -KEYWORDS="-alpha ~amd64 -ppc ~sparc ~x86" +KEYWORDS="~amd64 ~sparc ~x86" IUSE="" +RDEPEND="" DEPEND="" src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed." + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "emake failed" } src_install() { - dobin fm fmscan + dobin fm fmscan || die "dobin failed" doman fm.1 fmscan.1 dodoc CHANGES README } |