blob: 75695699ffcac23e4a20b6ac8e6acb29be7a3cee (
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
44
45
46
47
48
49
50
51
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-block/unieject/unieject-5.1.ebuild,v 1.3 2006/01/13 19:31:01 flameeyes Exp $
DESCRIPTION="Multiplatform command to eject and load CD-Rom drives"
HOMEPAGE="http://dev.gentoo.org/~flameeyes/projects"
SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="nls"
RDEPEND=">=dev-libs/libcdio-0.75-r1
dev-libs/popt
>=dev-libs/confuse-2.5
nls? ( virtual/libintl )
!virtual/eject"
DEPEND="${RDEPEND}
sys-apps/sed"
PROVIDE="virtual/eject"
src_unpack() {
unpack ${A}
cd ${S}
# libcdio-0.75-r1 in Gentoo is fixed, so no need to ask 0.76 either on
# FreeBSD.
sed -i -e '/freebsd/s:libcdiomin="0\.76":libcdiomin="0.75":' \
${S}/configure
}
src_compile() {
econf \
$(use_enable nls) \
--enable-lock-workaround \
--disable-dependency-tracking \
--disable-doc \
|| die "econf failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR="${D}" install
dodoc README ChangeLog NEWS AUTHORS unieject.conf.sample
# Symlink to eject to provide a good virtual/eject
dosym unieject.1.gz /usr/share/man/man1/eject.1.gz
dosym unieject /usr/bin/eject
}
|