diff options
author | Steve Dibb <beandog@gentoo.org> | 2009-01-10 12:07:43 +0000 |
---|---|---|
committer | Steve Dibb <beandog@gentoo.org> | 2009-01-10 12:07:43 +0000 |
commit | afaa14ae5f92c27e99dc5278908a77b68f1536da (patch) | |
tree | b111276526a2746be7da1bb739ef8bee34eceb9f /media-video/alevt | |
parent | drop old libstdc++ i386 hack #235181 (diff) | |
download | gentoo-2-afaa14ae5f92c27e99dc5278908a77b68f1536da.tar.gz gentoo-2-afaa14ae5f92c27e99dc5278908a77b68f1536da.tar.bz2 gentoo-2-afaa14ae5f92c27e99dc5278908a77b68f1536da.zip |
Version bump, bug 205934
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo x86_64)
Diffstat (limited to 'media-video/alevt')
-rw-r--r-- | media-video/alevt/ChangeLog | 9 | ||||
-rw-r--r-- | media-video/alevt/alevt-1.6.2.ebuild | 38 |
2 files changed, 45 insertions, 2 deletions
diff --git a/media-video/alevt/ChangeLog b/media-video/alevt/ChangeLog index da9dd4fe3c18..728de95b404e 100644 --- a/media-video/alevt/ChangeLog +++ b/media-video/alevt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-video/alevt -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/ChangeLog,v 1.28 2007/11/27 11:58:56 zzam Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/ChangeLog,v 1.29 2009/01/10 12:07:43 beandog Exp $ + +*alevt-1.6.2 (10 Jan 2009) + + 10 Jan 2009; Steve Dibb <beandog@gentoo.org> +alevt-1.6.2.ebuild: + Version bump, bug 205934 27 Nov 2007; Matthias Schwarzott <zzam@gentoo.org> alevt-1.6.1-r1.ebuild, alevt-1.6.1-r3.ebuild: diff --git a/media-video/alevt/alevt-1.6.2.ebuild b/media-video/alevt/alevt-1.6.2.ebuild new file mode 100644 index 000000000000..8ed3431a5fe0 --- /dev/null +++ b/media-video/alevt/alevt-1.6.2.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/alevt/alevt-1.6.2.ebuild,v 1.1 2009/01/10 12:07:43 beandog Exp $ + +inherit eutils toolchain-funcs flag-o-matic + +DESCRIPTION="Teletext viewer for X11" +HOMEPAGE="http://www.goron.de/~froese/" +SRC_URI="http://www.goron.de/~froese/alevt/${P}.tar.gz" +RESTRICT="strip" +IUSE="" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" + +RDEPEND="x11-libs/libX11 + >=media-libs/libpng-1.0.12" + +DEPEND="${RDEPEND} + x11-proto/xproto" + +src_compile() { + append-flags -fno-strict-aliasing + emake CC="$(tc-getCC)" || die +} + +src_install() { + dobin alevt alevt-cap alevt-date + doman alevt.1x alevt-date.1 alevt-cap.1 + dodoc CHANGELOG README + + insinto /usr/share/icons/hicolor/16x16/apps + newins contrib/mini-alevt.xpm alevt.xpm + insinto /usr/share/icons/hicolor/48x48/apps + newins contrib/icon48x48.xpm alevt.xpm + + make_desktop_entry alevt "AleVT" alevt +} |