blob: 60d98cca518e4e48f2aaa36f3a90cc1609d482c7 (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libbegemot/libbegemot-1.11.ebuild,v 1.2 2006/05/22 23:12:06 flameeyes Exp $
inherit libtool
DESCRIPTION="begemot utility function library"
HOMEPAGE="http://people.freebsd.org/~harti/"
SRC_URI="http://people.freebsd.org/~harti/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~x86-fbsd"
IUSE=""
DEPEND=""
src_compile() {
elibtoolize
econf || die "econf failed"
emake -j1 || die "emake failed"
}
src_install() {
einstall || die "einstall failed"
dodoc README
}
|