diff options
author | Tim Harder <radhermit@gentoo.org> | 2013-05-14 18:27:46 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2013-05-14 18:27:46 +0000 |
commit | 9a25d89240d3a33c8d9dc19f90b3f98879a5d535 (patch) | |
tree | c345368da0861a452f8db271eb9c8cdf1e9147f5 /media-sound/cd-discid | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-9a25d89240d3a33c8d9dc19f90b3f98879a5d535.tar.gz gentoo-2-9a25d89240d3a33c8d9dc19f90b3f98879a5d535.tar.bz2 gentoo-2-9a25d89240d3a33c8d9dc19f90b3f98879a5d535.zip |
Version bump.
(Portage version: 2.2.0_alpha174/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
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.4.ebuild | 26 |
2 files changed, 33 insertions, 2 deletions
diff --git a/media-sound/cd-discid/ChangeLog b/media-sound/cd-discid/ChangeLog index ab65856d5d99..1f4f1eb1ea3c 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-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/ChangeLog,v 1.29 2012/03/31 20:26:51 radhermit Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/ChangeLog,v 1.30 2013/05/14 18:27:46 radhermit Exp $ + +*cd-discid-1.4 (14 May 2013) + + 14 May 2013; Tim Harder <radhermit@gentoo.org> +cd-discid-1.4.ebuild: + Version bump. 31 Mar 2012; Tim Harder <radhermit@gentoo.org> -cd-discid-0.9.ebuild: Remove old. diff --git a/media-sound/cd-discid/cd-discid-1.4.ebuild b/media-sound/cd-discid/cd-discid-1.4.ebuild new file mode 100644 index 000000000000..3e7dad65db8a --- /dev/null +++ b/media-sound/cd-discid/cd-discid-1.4.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/cd-discid/cd-discid-1.4.ebuild,v 1.1 2013/05/14 18:27:46 radhermit Exp $ + +EAPI=5 + +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}/archive/upstream/1.4.tar.gz -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86" + +S=${WORKDIR}/${PN}-upstream-${PV} + +src_compile() { + emake CC="$(tc-getCC)" +} + +src_install() { + emake DESTDIR="${D}" PREFIX=/usr STRIP=/bin/true install + dodoc changelog README +} |