diff options
author | 2006-01-26 13:15:49 +0000 | |
---|---|---|
committer | 2006-01-26 13:15:49 +0000 | |
commit | a8e6a7754dbd40ed3901bc8177b2f69347b9cb51 (patch) | |
tree | caf517a0b5465aa3d7d0af08e3b9e9b3334f365f /dev-cpp/libebt | |
parent | Dep fix (diff) | |
download | gentoo-2-a8e6a7754dbd40ed3901bc8177b2f69347b9cb51.tar.gz gentoo-2-a8e6a7754dbd40ed3901bc8177b2f69347b9cb51.tar.bz2 gentoo-2-a8e6a7754dbd40ed3901bc8177b2f69347b9cb51.zip |
New version.
(Portage version: 2.1_pre3-r1, blessed by His Noodly Appendage)
Diffstat (limited to 'dev-cpp/libebt')
-rw-r--r-- | dev-cpp/libebt/ChangeLog | 7 | ||||
-rw-r--r-- | dev-cpp/libebt/Manifest | 12 | ||||
-rw-r--r-- | dev-cpp/libebt/files/digest-libebt-1.3.0 | 1 | ||||
-rw-r--r-- | dev-cpp/libebt/libebt-1.3.0.ebuild | 28 |
4 files changed, 37 insertions, 11 deletions
diff --git a/dev-cpp/libebt/ChangeLog b/dev-cpp/libebt/ChangeLog index 31187d9953b7..ccf280fa1e88 100644 --- a/dev-cpp/libebt/ChangeLog +++ b/dev-cpp/libebt/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-cpp/libebt # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libebt/ChangeLog,v 1.15 2006/01/20 04:17:53 ciaranm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libebt/ChangeLog,v 1.16 2006/01/26 13:15:49 ciaranm Exp $ + +*libebt-1.3.0 (26 Jan 2006) + + 26 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org> +libebt-1.3.0.ebuild: + New version. 20 Jan 2006; Ciaran McCreesh <ciaranm@gentoo.org> -libebt-1.1.0.ebuild, -libebt-1.2.0.ebuild: diff --git a/dev-cpp/libebt/Manifest b/dev-cpp/libebt/Manifest index a74c429b1314..a8da6d8f7090 100644 --- a/dev-cpp/libebt/Manifest +++ b/dev-cpp/libebt/Manifest @@ -1,16 +1,8 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 1d459c83475e92e3dbb905e3093b1386 ChangeLog 1853 MD5 cdc68cbdeff730b875b64b291d5df020 files/digest-libebt-1.2.1 65 MD5 6ec17bffc212683636f10d15eabd6dbf files/digest-libebt-1.2.2 65 +MD5 d9c9ec15960ed2f2e31ebac85d4a1fd4 files/digest-libebt-1.3.0 65 MD5 d485b3a31bf3010e2f65d82d9b4ddeaf libebt-1.2.1.ebuild 859 MD5 30b096c182c3df5cb7a52b1483800250 libebt-1.2.2.ebuild 859 +MD5 30b096c182c3df5cb7a52b1483800250 libebt-1.3.0.ebuild 859 MD5 49b5ca6a324b8f95eba6721c1e5e7793 metadata.xml 582 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.2 (GNU/Linux) - -iD8DBQFD0GR+LLFUmVNQ7rkRAuBaAJ921b17QwdNnX2Cp19jdDz1Io8DlQCdExB2 -Q80uGKRi8LacOf5KVWJkpfo= -=l0cn ------END PGP SIGNATURE----- diff --git a/dev-cpp/libebt/files/digest-libebt-1.3.0 b/dev-cpp/libebt/files/digest-libebt-1.3.0 new file mode 100644 index 000000000000..d822b6a4acd1 --- /dev/null +++ b/dev-cpp/libebt/files/digest-libebt-1.3.0 @@ -0,0 +1 @@ +MD5 4db63470575336e27f89038d7c7cc01e libebt-1.3.0.tar.bz2 144838 diff --git a/dev-cpp/libebt/libebt-1.3.0.ebuild b/dev-cpp/libebt/libebt-1.3.0.ebuild new file mode 100644 index 000000000000..05e63e64ccce --- /dev/null +++ b/dev-cpp/libebt/libebt-1.3.0.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libebt/libebt-1.3.0.ebuild,v 1.1 2006/01/26 13:15:49 ciaranm Exp $ + +DESCRIPTION="A pure C++ template library that provides a clean way of getting human-readable backtrace messages." +HOMEPAGE="http://libebt.berlios.de/" +SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2" +RESTRICT="primaryuri" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~hppa ~mips ~ppc ~sparc ~x86" +IUSE="doc" + +DEPEND="doc? ( app-doc/doxygen )" +RDEPEND="" + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" + use doc && { emake doxygen || die "failed to build API docs" ; } +} + +src_install() { + make DESTDIR="${D}" install || die "make install failed" + dodoc ChangeLog README + use doc && dohtml -r doc/html/* +} |