blob: 88246455a210b78d1b727f103153b01209221365 (
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
38
39
40
41
42
43
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/eject/eject-2.0.13.ebuild,v 1.11 2004/06/24 22:04:45 agriffis Exp $
inherit eutils
S=${WORKDIR}/${P}
DESCRIPTION="A command to eject a disc from the CD-ROM drive"
HOMEPAGE="http://eject.sourceforge.net/"
SRC_URI="http://www.ibiblio.org/pub/Linux/utils/disk-management/${P}.tar.gz
http://www.pobox.com/~tranter/${P}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 amd64 ~ppc sparc alpha hppa ppc64 ia64 mips"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
# Get this puppy working with kernel 2.5.x
# <azarah@gentoo.org> (06 March 2003)
epatch ${FILESDIR}/${P}-kernel25-support.patch || die
# Fix stupid includes (bug #41856)
sed -i -e 's|-I/usr/src/linux -I/usr/src/linux|-I/usr/include|' \
${S}/Makefile.in
}
src_install() {
dodir /usr/bin /usr/share/man/man1
# Full install breaks sandbox, and I'm too lazy to figure out how, so:
make DESTDIR=${D} install-binPROGRAMS || die
make DESTDIR=${D} install-man1 || die
make DESTDIR=${D} install-man || die
dodoc ChangeLog COPYING README PORTING TODO
dodoc AUTHORS NEWS PROBLEMS
}
|