blob: c78bd6315201876f2263e85169d5387d39021fe5 (
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
32
33
34
35
36
37
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/eject/eject-2.1.5-r2.ebuild,v 1.2 2009/08/12 19:22:08 ssuominen Exp $
inherit eutils
DESCRIPTION="A command to eject a disc from the CD-ROM drive"
HOMEPAGE="http://eject.sourceforge.net/ http://ca.geocities.com/jefftranter@rogers.com/eject.html"
SRC_URI="http://www.ibiblio.org/pub/Linux/utils/disk-management/${P}.tar.gz
http://www.pobox.com/~tranter/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
IUSE="nls"
S=${WORKDIR}/${PN}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}"-2.0.13-xmalloc.patch
epatch "${FILESDIR}/${PN}"-2.1.4-scsi-rdwr.patch
epatch "${FILESDIR}/${PN}"-2.1.5-handle-spaces.patch #151257
epatch "${FILESDIR}/${PN}"-2.1.5-man-typo.patch #165248
epatch "${FILESDIR}/${PN}"-2.1.5-toggle.patch #261880
}
src_compile() {
econf $(use_enable nls) || die
emake || die
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog README PORTING TODO AUTHORS NEWS PROBLEMS
}
|