blob: e26806d34117b5b921879889f51aab66c5d3e7b9 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/regexxer/regexxer-0.4.ebuild,v 1.5 2004/05/30 19:42:18 khai Exp $
DESCRIPTION="An interactive tool for performing search and replace operations"
HOMEPAGE="http://regexxer.sourceforge.net/"
LICENSE="GPL-2"
SRC_URI="mirror://sourceforge/regexxer/${P}.tar.gz"
IUSE=""
SLOT="0"
KEYWORDS="x86 ~ppc"
DEPEND="=dev-cpp/gtkmm-2.2.11
>=dev-libs/libpcre-3.9-r2"
src_compile() {
econf || die "econf failed."
emake || die "emake failed."
}
src_install() {
einstall
}
|