blob: 13de73c404c8a8eeaac7bf827d0748f9aa7f2c2f (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
WX_GTK_VER=2.6
inherit wxwidgets
DESCRIPTION="query multiple search engines at the same time"
HOMEPAGE="http://olivier.coupelon.free.fr/teardrop/"
SRC_URI="http://olivier.coupelon.free.fr/${PN}/download/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="unicode"
DEPEND="virtual/libiconv
dev-libs/libxml2
net-misc/curl
dev-libs/libpcre
=x11-libs/wxGTK-2.6*"
RDEPEND="${DEPEND}"
src_compile() {
use unicode && need-wxwidgets unicode
econf --with-wx-config="${WX_CONFIG}"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc ChangeLog
}
|