summaryrefslogtreecommitdiff
blob: 78b5013a25d15e345f933c3102090370ce15c6b5 (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
30
31
32
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI="2"
EGIT_REPO_URI="git://github.com/eatnumber1/${PN}.git"

inherit git autotools

DESCRIPTION="The Useless Programming Library"
HOMEPAGE="http://github.com/eatnumber1/libuseless"
SRC_URI=""

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND="dev-lang/perl"
RDEPEND="${DEPEND}"

src_prepare() {
	eautoreconf || die
}

src_configure() {
	econf || die
}

src_install() {
	emake DESTDIR="${D}" install || die
}