summaryrefslogtreecommitdiff
blob: 54f386693cfb58b757f6233110f9c958ee8e29c9 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/rudiments-0.25.1.ebuild,v 1.4 2005/01/01 04:49:47 matsuu Exp $

# Contributed by: Karl Haines <karl420@comcast.net>

DESCRIPTION="Rudiments is an Open Source C++ class library providing base classes for things such as daemons, clients and servers, and wrapper classes for the standard C functions for things like such as regular expressions, semaphores and signal handling."
HOMEPAGE="http://rudiments.sourceforge.net/"
SRC_URI="http://download.sourceforge.net/rudiments/${P}.tar.gz"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="x86"

IUSE=""

DEPEND=""

src_compile() {
	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--with-gnu-ld \
		--mandir=/usr/share/man || die "./configure failed"
	make CXXFLAGS="${CFLAGS}" || die
}

src_install() {
	einstall || die
}