diff options
author | 2011-11-20 00:21:35 +0000 | |
---|---|---|
committer | 2011-11-20 00:21:35 +0000 | |
commit | a17389a9c7bbfc1e1f1ddca59e56b79933ad5bc6 (patch) | |
tree | 45008492f70d421540e241820b6baa04d499f01e /media-sound/cd-discid | |
parent | Missing BSD-2 license (frontends use it per COPYING) wrt #360501 by "Luke-Jr" (diff) | |
download | gentoo-2-a17389a9c7bbfc1e1f1ddca59e56b79933ad5bc6.tar.gz gentoo-2-a17389a9c7bbfc1e1f1ddca59e56b79933ad5bc6.tar.bz2 gentoo-2-a17389a9c7bbfc1e1f1ddca59e56b79933ad5bc6.zip |
Version bump.
(Portage version: 2.2.0_alpha73/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/cd-discid')
-rw-r--r-- | media-sound/cd-discid/ChangeLog | 9 | ||||
-rw-r--r-- | media-sound/cd-discid/cd-discid-1.3.ebuild | 31 |
2 files changed, 38 insertions, 2 deletions
diff --git a/media-sound/cd-discid/ChangeLog b/media-sound/cd-discid/ChangeLog index 25f6510de42a..f0928b25e2f4 100644 --- a/media-sound/cd-discid/ChangeLog +++ b/media-sound/cd-discid/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/cd-discid -# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/ChangeLog,v 1.21 2009/06/16 17:56:15 klausman Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/ChangeLog,v 1.22 2011/11/20 00:21:35 radhermit Exp $ + +*cd-discid-1.3 (20 Nov 2011) + + 20 Nov 2011; Tim Harder <radhermit@gentoo.org> +cd-discid-1.3.ebuild: + Version bump. 16 Jun 2009; Tobias Klausmann <klausman@gentoo.org> cd-discid-0.9.ebuild: Keyworded on alpha, bug #272776 diff --git a/media-sound/cd-discid/cd-discid-1.3.ebuild b/media-sound/cd-discid/cd-discid-1.3.ebuild new file mode 100644 index 000000000000..e188c390785c --- /dev/null +++ b/media-sound/cd-discid/cd-discid-1.3.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/cd-discid-1.3.ebuild,v 1.1 2011/11/20 00:21:35 radhermit Exp $ + +EAPI=4 + +inherit toolchain-funcs + +DESCRIPTION="returns the disc id for the cd in the cd-rom drive" +HOMEPAGE="https://github.com/taem/cd-discid" +SRC_URI="https://github.com/taem/${PN}/tarball/upstream/${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DOCS=( changelog README ) + +src_unpack() { + unpack ${A} + mv *-${PN}-* "${S}" +} + +src_prepare() { + sed -i -e "/^\(C\|LD\)FLAGS/d" Makefile || die +} + +src_compile() { + emake CC="$(tc-getCC)" +} |