blob: 6f9c37b873a8cfbf654ba9e8d04b9d8ddcb76f1c (
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 Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/localizer/localizer-0.3.3.ebuild,v 1.4 2004/11/02 20:16:28 stuart Exp $
DESCRIPTION="Localisation library for lighttpd"
HOMEPAGE="http://www.incremental.de/products/localizer/"
SRC_URI="http://www.incremental.de/products/localizer/download/${P}.tar.gz"
LICENSE="Artistic"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE=""
DEPEND=""
#RDEPEND=""
src_compile() {
local my_conf
my_conf="$my_conf --enable-static --enable-shared"
econf $my_conf || die "configure failed"
emake || die "emake failed"
}
src_install() {
make DESTDIR=${D} install || die
}
|