diff options
author | Michael Nazaroff <naz@gentoo.org> | 2002-07-08 00:38:49 +0000 |
---|---|---|
committer | Michael Nazaroff <naz@gentoo.org> | 2002-07-08 00:38:49 +0000 |
commit | 549f5ba3d7a6fd205394b70148494a5c47db7cd1 (patch) | |
tree | 22ad59eaacd96742b8fab640be4b01dbd0ac873a /dev-libs/commonc++ | |
parent | Added LICENSE, KEYWORDS, SLOT. (diff) | |
download | historical-549f5ba3d7a6fd205394b70148494a5c47db7cd1.tar.gz historical-549f5ba3d7a6fd205394b70148494a5c47db7cd1.tar.bz2 historical-549f5ba3d7a6fd205394b70148494a5c47db7cd1.zip |
Added patch to commonc++ so it now compiles
Diffstat (limited to 'dev-libs/commonc++')
-rw-r--r-- | dev-libs/commonc++/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/commonc++/commonc++-1.9.7.ebuild | 13 |
2 files changed, 19 insertions, 2 deletions
diff --git a/dev-libs/commonc++/ChangeLog b/dev-libs/commonc++/ChangeLog index 1986e2b26965..10670ce2708a 100644 --- a/dev-libs/commonc++/ChangeLog +++ b/dev-libs/commonc++/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for <CATEGORY>/<PACKAGE_NAME> # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/commonc++/ChangeLog,v 1.1 2002/07/05 19:45:51 naz Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/commonc++/ChangeLog,v 1.2 2002/07/08 00:38:49 naz Exp $ + +*commonc++-1.9.7 (07 Jul 2002) + 07 Jul 2002; Michael Nazaroff <naz@gentoo.org> commonc++-1.9.7: + Added a small patch so it compiles since it was broke before. + I also added license and slot to the ebuild and included the doc's along with + the ebuild. *commonc++-1.9.7 (05 Jul 2002) diff --git a/dev-libs/commonc++/commonc++-1.9.7.ebuild b/dev-libs/commonc++/commonc++-1.9.7.ebuild index f9a8a0281884..638db9d2cbc4 100644 --- a/dev-libs/commonc++/commonc++-1.9.7.ebuild +++ b/dev-libs/commonc++/commonc++-1.9.7.ebuild @@ -15,6 +15,16 @@ DEPEND="virtual/glibc sys-libs/zlib dev-libs/libxml2" +SLOT="0" +LICENSE="GPL-2" + +src_unpack() { + + unpack ${A} + cd ${S} + patch -p0 < ${FILESDIR}/commmonc++-0.1.patch || die + +} src_compile() { cd ${S} @@ -29,5 +39,6 @@ src_install () { make prefix=${D} install || die dodoc AUTHORS INSTALL NEWS OVERVIEW.TXT ChangeLog\ - README THANKS TODO + README THANKS TODO COPYING COPYING.addendum + dohtml doc/* } |