blob: 1f9d016d274de0724e25a56033de9ba488b1a82d (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/eb/eb-4.4.1.ebuild,v 1.4 2012/06/06 23:38:12 jdhore Exp $
IUSE="nls ipv6 threads"
DESCRIPTION="EB is a C library and utilities for accessing CD-ROM books"
HOMEPAGE="http://www.sra.co.jp/people/m-kasahr/eb/"
SRC_URI="ftp://ftp.sra.co.jp/pub/misc/eb/${P}.tar.lzma"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha amd64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
RDEPEND="sys-libs/zlib
nls? ( virtual/libintl )"
DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
src_compile () {
econf \
--with-pkgdocdir=/usr/share/doc/${PF}/html \
$(use_enable nls) \
$(use_enable threads pthread) \
$(use_enable ipv6) || die "Failed configure."
emake || die "Failed make."
}
src_install () {
emake DESTDIR="${D}" install || die "Failed install."
dodoc AUTHORS ChangeLog* NEWS README
}
pkg_postinst() {
elog
elog "If you are upgrading from <app-dicts/eb-4.4.1,"
elog "you may need to rebuild applications depending on eb."
elog
}
|