blob: dc083b2ae20e03893ac68fde863ff667d27a9782 (
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-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-www/ochusha/ochusha-0.5.4.2.ebuild,v 1.1 2004/05/24 17:56:26 usata Exp $
IUSE="nls ssl"
DESCRIPTION="Ochusha - 2ch viewer for GTK+"
HOMEPAGE="http://ochusha.sourceforge.jp/"
SRC_URI="mirror://sourceforge.jp/${PN}/9615/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
DEPEND="virtual/xft
>=x11-libs/gtk+-2.2.4
>=dev-libs/glib-2.2.3
>=dev-libs/libxml2-2.5.0
>=gnome-base/libghttp-1.0.9
sys-libs/zlib
nls? ( sys-devel/gettext )
ssl? ( dev-libs/openssl )"
src_compile() {
econf `use_enable nls` \
`use_with ssl` \
--enable-regex \
--disable-shared \
--enable-static \
--with-included-oniguruma || die
emake || die
}
src_install() {
einstall || die
dodoc ABOUT-NLS ACKNOWLEDGEMENT AUTHORS BUGS \
ChangeLog INSTALL* NEWS README TODO
}
|