diff options
author | Caleb Tennis <caleb@gentoo.org> | 2009-03-28 16:47:04 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2009-03-28 16:47:04 +0000 |
commit | 9fe467576bed8c3440a7693321b905704d136694 (patch) | |
tree | 4618c0fffab19b357e84d059625068432bdb5ed8 /dev-cpp | |
parent | Version bump (diff) | |
download | gentoo-2-9fe467576bed8c3440a7693321b905704d136694.tar.gz gentoo-2-9fe467576bed8c3440a7693321b905704d136694.tar.bz2 gentoo-2-9fe467576bed8c3440a7693321b905704d136694.zip |
Version bump
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'dev-cpp')
-rw-r--r-- | dev-cpp/libmcpp/ChangeLog | 7 | ||||
-rw-r--r-- | dev-cpp/libmcpp/libmcpp-2.7.2.ebuild | 30 |
2 files changed, 36 insertions, 1 deletions
diff --git a/dev-cpp/libmcpp/ChangeLog b/dev-cpp/libmcpp/ChangeLog index c08bcb4d7bb2..0878386dcd2e 100644 --- a/dev-cpp/libmcpp/ChangeLog +++ b/dev-cpp/libmcpp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/libmcpp # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmcpp/ChangeLog,v 1.3 2009/01/07 15:12:29 b33fc0d3 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmcpp/ChangeLog,v 1.4 2009/03/28 16:47:04 caleb Exp $ + +*libmcpp-2.7.2 (28 Mar 2009) + + 28 Mar 2009; Caleb Tennis <caleb@gentoo.org> +libmcpp-2.7.2.ebuild: + Version bump *libmcpp-2.7 (07 Jan 2009) diff --git a/dev-cpp/libmcpp/libmcpp-2.7.2.ebuild b/dev-cpp/libmcpp/libmcpp-2.7.2.ebuild new file mode 100644 index 000000000000..2e3b46d218dd --- /dev/null +++ b/dev-cpp/libmcpp/libmcpp-2.7.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 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.ebuild,v 1.1 2009/03/28 16:47:04 caleb Exp $ + +inherit eutils + +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="~x86 ~arm" +IUSE="" + +DEPEND="app-arch/gzip" +RDEPEND="" + +S=${WORKDIR}/${MY_P} + +src_compile() { + econf --enable-mcpplib + emake || die "emake failed" +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" +} |