diff options
author | Ben de Groot <yngwin@gentoo.org> | 2013-01-27 10:34:50 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2013-01-27 10:34:50 +0000 |
commit | fa409fdd50deef6c33f201765140676797020897 (patch) | |
tree | 0d1e3463bb40bb5896bb52f37e26426f8286f1b7 /media-sound/redoflacs | |
parent | Remove .la files. (diff) | |
download | gentoo-2-fa409fdd50deef6c33f201765140676797020897.tar.gz gentoo-2-fa409fdd50deef6c33f201765140676797020897.tar.bz2 gentoo-2-fa409fdd50deef6c33f201765140676797020897.zip |
version bump (bug #443960); implement readme.gentoo elog handling
(Portage version: 2.2.0_alpha161/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'media-sound/redoflacs')
-rw-r--r-- | media-sound/redoflacs/ChangeLog | 10 | ||||
-rw-r--r-- | media-sound/redoflacs/files/README.gentoo | 4 | ||||
-rw-r--r-- | media-sound/redoflacs/redoflacs-0.19.ebuild | 26 |
3 files changed, 38 insertions, 2 deletions
diff --git a/media-sound/redoflacs/ChangeLog b/media-sound/redoflacs/ChangeLog index 1c8652e679f3..ccbfadd13ad2 100644 --- a/media-sound/redoflacs/ChangeLog +++ b/media-sound/redoflacs/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for media-sound/redoflacs -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/redoflacs/ChangeLog,v 1.4 2012/10/29 14:25:28 yngwin Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/redoflacs/ChangeLog,v 1.5 2013/01/27 10:34:50 yngwin Exp $ + +*redoflacs-0.19 (27 Jan 2013) + + 27 Jan 2013; Ben de Groot <yngwin@gentoo.org> +files/README.gentoo, + +redoflacs-0.19.ebuild: + version bump (bug #443960); implement readme.gentoo elog handling *redoflacs-0.16.2 (29 Oct 2012) diff --git a/media-sound/redoflacs/files/README.gentoo b/media-sound/redoflacs/files/README.gentoo new file mode 100644 index 000000000000..d1d631bd427f --- /dev/null +++ b/media-sound/redoflacs/files/README.gentoo @@ -0,0 +1,4 @@ +This script makes use of optional programs if installed: + + media-sound/sox -> for creating spectrograms (enable USE=png) + media-sound/aucdtect -> for determining authenticity of FLAC files (CDDA) diff --git a/media-sound/redoflacs/redoflacs-0.19.ebuild b/media-sound/redoflacs/redoflacs-0.19.ebuild new file mode 100644 index 000000000000..f8ea07662146 --- /dev/null +++ b/media-sound/redoflacs/redoflacs-0.19.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/redoflacs/redoflacs-0.19.ebuild,v 1.1 2013/01/27 10:34:50 yngwin Exp $ + +EAPI=5 +inherit readme.gentoo vcs-snapshot + +DESCRIPTION="Bash commandline flac compressor, verifier, organizer, analyzer, retagger" +HOMEPAGE="https://github.com/sirjaren/redoflacs" +SRC_URI="https://github.com/sirjaren/${PN}/tarball/v${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND=">=app-shells/bash-4 + media-libs/flac + sys-apps/coreutils" + +src_install() { + exeinto /usr/bin + doexe redoflacs + readme.gentoo_create_doc +} |