blob: a58ebc45d07507c623e5595a29f016cc7bdf5ef9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dotconf/dotconf-1.1.0.ebuild,v 1.6 2004/10/05 10:31:07 pvdabeel Exp $
DESCRIPTION="dot.conf libraries"
HOMEPAGE="http://www.azzit.de/dotconf/"
SRC_URI="http://www.azzit.de/dotconf/download/v1.1/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="x86 ppc amd64"
IUSE=""
DEPEND=">=sys-devel/autoconf-2.58
>=sys-devel/make-3.80"
src_compile() {
econf --prefix=/usr || die
emake || die
}
src_install() {
einstall || die
}
|