diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-28 18:07:23 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2011-03-28 18:07:23 +0000 |
commit | ea9fe215ac035434b4eb9e40a47e104fc245c573 (patch) | |
tree | a9d1ea63bd3bb18e199c498d179cd267f88c43b1 /media-video | |
parent | USE="static-libs" and remove useless libtool file. Remove USE="deprecated" no... (diff) | |
download | gentoo-2-ea9fe215ac035434b4eb9e40a47e104fc245c573.tar.gz gentoo-2-ea9fe215ac035434b4eb9e40a47e104fc245c573.tar.bz2 gentoo-2-ea9fe215ac035434b4eb9e40a47e104fc245c573.zip |
Version bump; new version supports V4L2 (bug #360967), and no longer overflows buffers (bug #301879).
(Portage version: 2.2.0_alpha29/cvs/Linux x86_64)
Diffstat (limited to 'media-video')
-rw-r--r-- | media-video/hasciicam/ChangeLog | 11 | ||||
-rw-r--r-- | media-video/hasciicam/hasciicam-1.1.1.ebuild | 22 |
2 files changed, 31 insertions, 2 deletions
diff --git a/media-video/hasciicam/ChangeLog b/media-video/hasciicam/ChangeLog index 863e7dee2496..ff0b18f2aa60 100644 --- a/media-video/hasciicam/ChangeLog +++ b/media-video/hasciicam/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-video/hasciicam -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/hasciicam/ChangeLog,v 1.4 2008/11/24 16:15:36 ssuominen Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/hasciicam/ChangeLog,v 1.5 2011/03/28 18:07:23 flameeyes Exp $ + +*hasciicam-1.1.1 (28 Mar 2011) + + 28 Mar 2011; Diego E. Pettenò <flameeyes@gentoo.org> + +hasciicam-1.1.1.ebuild: + Version bump; new version supports V4L2 (bug #360967), and no longer + overflows buffers (bug #301879). 24 Nov 2008; <ssuominen@gentoo.org> metadata.xml, hasciicam-1.0.ebuild: Re-assign to media-video and stabilize for x86. diff --git a/media-video/hasciicam/hasciicam-1.1.1.ebuild b/media-video/hasciicam/hasciicam-1.1.1.ebuild new file mode 100644 index 000000000000..503454c2061b --- /dev/null +++ b/media-video/hasciicam/hasciicam-1.1.1.ebuild @@ -0,0 +1,22 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/hasciicam/hasciicam-1.1.1.ebuild,v 1.1 2011/03/28 18:07:23 flameeyes Exp $ + +EAPI=4 + +DESCRIPTION="a webcam software displaying ascii art using aalib." +HOMEPAGE="http://ascii.dyne.org" +SRC_URI="ftp://ftp.dyne.org/${PN}/releases/${PN}_${PV}.orig.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND="media-libs/aalib" +DEPEND="${RDEPEND}" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + dodoc AUTHORS ChangeLog NEWS README TODO +} |