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/libmcpp/libmcpp-2.7.2-r1.ebuild

38 lines
812 B

# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmcpp/libmcpp-2.7.2-r1.ebuild,v 1.5 2011/10/07 19:13:38 darkside Exp $
EAPI="3"
MY_P=${P/lib/}
DESCRIPTION="A portable C++ preprocessor"
HOMEPAGE="http://mcpp.sourceforge.net"
SRC_URI="mirror://sourceforge/mcpp/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 ~arm x86 ~x64-macos"
IUSE="static-libs"
DEPEND=""
RDEPEND=""
S="${WORKDIR}/${MY_P}"
src_configure() {
econf \
--enable-mcpplib \
$(use_enable static-libs static)
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
rm -rf "${ED}/usr/share/doc"
dodoc ChangeLog NEWS README doc/*.pdf
dohtml doc/*.html
use static-libs || rm -rf "${ED}"/usr/lib*/*.la
}