diff options
author | Manuel Rüger <mrueg@gentoo.org> | 2014-10-27 17:18:12 +0000 |
---|---|---|
committer | Manuel Rüger <mrueg@gentoo.org> | 2014-10-27 17:18:12 +0000 |
commit | 30e82d9be18833aa5ec2759e1393202055edfdda (patch) | |
tree | 0324cb1c07a5470ee3a19e1a8298939c907d8dee /media-video/vmaid | |
parent | sci-chemistry/pdb2pqr: Add missing PYTHON_USEDEP (diff) | |
download | gentoo-2-30e82d9be18833aa5ec2759e1393202055edfdda.tar.gz gentoo-2-30e82d9be18833aa5ec2759e1393202055edfdda.tar.bz2 gentoo-2-30e82d9be18833aa5ec2759e1393202055edfdda.zip |
Version bump. Fixes bug #505048. Bump EAPI. Cleanup old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'media-video/vmaid')
-rw-r--r-- | media-video/vmaid/ChangeLog | 10 | ||||
-rw-r--r-- | media-video/vmaid/vmaid-2.2.4.ebuild (renamed from media-video/vmaid/vmaid-2.2.0.ebuild) | 28 |
2 files changed, 17 insertions, 21 deletions
diff --git a/media-video/vmaid/ChangeLog b/media-video/vmaid/ChangeLog index b091a7b96f8c..5f63a2d14d60 100644 --- a/media-video/vmaid/ChangeLog +++ b/media-video/vmaid/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-video/vmaid -# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vmaid/ChangeLog,v 1.12 2013/05/16 19:24:51 ulm Exp $ +# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-video/vmaid/ChangeLog,v 1.13 2014/10/27 17:18:12 mrueg Exp $ + +*vmaid-2.2.4 (27 Oct 2014) + + 27 Oct 2014; Manuel Rüger <mrueg@gentoo.org> +vmaid-2.2.4.ebuild, + -vmaid-2.2.0.ebuild: + Version bump. Fixes bug #505048. Bump EAPI. Cleanup old. 16 May 2013; Ulrich Müller <ulm@gentoo.org> vmaid-2.2.0.ebuild: Remove win32codecs USE flag, bug 468406. diff --git a/media-video/vmaid/vmaid-2.2.0.ebuild b/media-video/vmaid/vmaid-2.2.4.ebuild index 162153e88f9a..570b71e55e66 100644 --- a/media-video/vmaid/vmaid-2.2.0.ebuild +++ b/media-video/vmaid/vmaid-2.2.4.ebuild @@ -1,13 +1,12 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-video/vmaid/vmaid-2.2.0.ebuild,v 1.4 2013/05/16 19:24:51 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-video/vmaid/vmaid-2.2.4.ebuild,v 1.1 2014/10/27 17:18:12 mrueg Exp $ -EAPI=1 +EAPI=5 DESCRIPTION="Video maid is the AVI file editor" HOMEPAGE="http://vmaid.sourceforge.jp/" -SRC_URI="mirror://sourceforge.jp/vmaid/33098/${P}.tar.gz" - +SRC_URI="mirror://sourceforge.jp/vmaid/48081/${P}.tar.gz" LICENSE="GPL-3" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86" @@ -22,24 +21,15 @@ DEPEND="${RDEPEND} virtual/pkgconfig app-text/scrollkeeper" -src_compile() { - local myconf - - if use ao ; then - myconf="${myconf} --with-ao=yes" - elif use alsa ; then - myconf="${myconf} --with-alsa=yes" - fi - +src_configure() { econf \ $(use_enable mime) \ - --without-w32 \ - ${myconf} || die - emake || die + --with-ao=$(usex ao) \ + --with-alsa=$(usex alsa) \ + --without-w32 } - src_install() { - emake DESTDIR="${D}" install || die + emake DESTDIR="${D}" install dodoc AUTHORS CONTRIBUTORS ChangeLog NEWS README dohtml -r doc/{en,ja} |