blob: 917d142998cef3dadd7fe2bf7332cd9a427459be (
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-2005 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.7 2005/04/24 12:47:26 hansmi 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 amd64"
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
}
|