summaryrefslogtreecommitdiff
blob: b761fb0c04ec860145b216bee7a997839146c3a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/cd-discid/cd-discid-0.8.ebuild,v 1.4 2004/04/20 17:16:53 eradicator Exp $

IUSE=""

S=${WORKDIR}/${P}
DESCRIPTION="returns the disc id for the cd in the cd-rom drive"
SRC_URI="http://lly.org/~rcw/cd-discid/${PN}_${PV}.orig.tar.gz"
HOMEPAGE="http://lly.org/~rcw/abcde/page/"

DEPEND="virtual/glibc"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 sparc ppc amd64"

src_compile() {

	echo gcc ${CFLAGS} -o cd-discid cd-discid.c
	gcc ${CFLAGS} -o cd-discid cd-discid.c
}

src_install () {

	into /usr
	dobin cd-discid
	doman cd-discid.1

	dodoc COPYING README changelog
}