You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-cpp/rudiments/rudiments-0.40.ebuild

40 lines
896 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/rudiments/rudiments-0.40.ebuild,v 1.1 2013/02/07 10:05:32 dev-zero Exp $
EAPI="5"
inherit autotools eutils
DESCRIPTION="C++ class library for daemons, clients and servers"
HOMEPAGE="http://rudiments.sourceforge.net/"
SRC_URI="mirror://sourceforge/rudiments/${P}.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug pcre ssl static-libs"
DEPEND="pcre? ( dev-libs/libpcre )
ssl? ( dev-libs/openssl )"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}/${PV}-configure.patch"
eautoconf
}
src_configure() {
econf \
--docdir="/usr/share/doc/${PF}/html" \
$(use_enable debug) \
$(use_enable pcre) \
$(use_enable ssl) \
$(use_enable static-libs static)
}
src_install() {
default
prune_libtool_files
}