summaryrefslogtreecommitdiff
blob: 41f9f09d7ea932ab3601ff0d64285619d149f17d (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="3"

inherit eutils

DESCRIPTION="A command to eject a disc from the CD-ROM drive"
HOMEPAGE="http://eject.sourceforge.net/"
SRC_URI="mirror://gentoo/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux"
IUSE="nls"

DEPEND="nls? ( sys-devel/gettext )"
RDEPEND=""

S=${WORKDIR}/${PN}

src_prepare() {
	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_configure() {
	econf \
		$(use_enable nls)
}

src_install() {
	# PREFIX for po/Makefile, which hardcodes a prefix of "$(DESTDIR)/usr"
	# it is not used in the other makefiles
	emake DESTDIR="${D}" PREFIX="${ED}/usr" install || die
	dodoc ChangeLog README PORTING TODO AUTHORS NEWS PROBLEMS
}