blob: 61bd704090777f9981c52cffadb9542baa3924d1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/searchmonkey/searchmonkey-2.0.0.ebuild,v 1.2 2012/06/25 17:18:36 jlec Exp $
EAPI=4
inherit qt4-r2
MY_PN=${PN}2
MY_P=${PN}_v${PV}
DESCRIPTION="Powerful text searches using regular expressions"
HOMEPAGE="http://searchmonkey.sourceforge.net/"
SRC_URI="mirror://sourceforge/project/${PN}/${MY_PN^}/${PV}%20%5Bstable%5D/${MY_P}.zip"
LICENSE="GPL-3"
SLOT="2"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="
x11-libs/qt-core
x11-libs/qt-gui"
DEPEND="${RDEPEND}
app-arch/unzip"
S="${WORKDIR}"/${MY_P}
PATCHES=( "${FILESDIR}"/${P}-gcc4.7.patch )
src_install() {
newbin ${PN} ${MY_PN}
# Hand-made desktop icon
doicon pixmaps/searchmonkey-300x300.png
insinto /usr/share/applications/
doins "${FILESDIR}"/${P}.desktop
}
|