diff options
author | Aaron Walker <ka0ttic@gentoo.org> | 2004-12-23 17:09:36 +0000 |
---|---|---|
committer | Aaron Walker <ka0ttic@gentoo.org> | 2004-12-23 17:09:36 +0000 |
commit | 9a36f8e22396b17e5792c353a0009c5e39ec8a98 (patch) | |
tree | e8da4e3cf5a13cac7589599282b87969963a1bdb /dev-libs/log4cxx | |
parent | Stable on hppa. (Manifest recommit) (diff) | |
download | gentoo-2-9a36f8e22396b17e5792c353a0009c5e39ec8a98.tar.gz gentoo-2-9a36f8e22396b17e5792c353a0009c5e39ec8a98.tar.bz2 gentoo-2-9a36f8e22396b17e5792c353a0009c5e39ec8a98.zip |
Don't use use_enable for unicode, as the configure.in doesn't respect --disable-unicode; fixes bug 75448.
Diffstat (limited to 'dev-libs/log4cxx')
-rw-r--r-- | dev-libs/log4cxx/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/log4cxx/Manifest | 14 | ||||
-rw-r--r-- | dev-libs/log4cxx/log4cxx-0.9.7.ebuild | 5 |
3 files changed, 10 insertions, 15 deletions
diff --git a/dev-libs/log4cxx/ChangeLog b/dev-libs/log4cxx/ChangeLog index ad8a5543aa85..a3aa96777b14 100644 --- a/dev-libs/log4cxx/ChangeLog +++ b/dev-libs/log4cxx/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-libs/log4cxx # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cxx/ChangeLog,v 1.5 2004/12/22 15:17:16 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cxx/ChangeLog,v 1.6 2004/12/23 17:09:36 ka0ttic Exp $ + + 23 Dec 2004; Aaron Walker <ka0ttic@gentoo.org> log4cxx-0.9.7.ebuild: + Don't use use_enable for unicode, as the configure.in doesn't respect + --disable-unicode; fixes bug 75448. *log4cxx-0.9.7 (22 Dec 2004) diff --git a/dev-libs/log4cxx/Manifest b/dev-libs/log4cxx/Manifest index d63f28d51044..2e3730ecfc78 100644 --- a/dev-libs/log4cxx/Manifest +++ b/dev-libs/log4cxx/Manifest @@ -1,17 +1,7 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 839e6262a6479c9c33123a3d77a195b7 log4cxx-0.9.5.ebuild 848 -MD5 ffb450be4deeb4891228f57b60103afd ChangeLog 907 +MD5 1777c217e2c527d7eef2cee491537613 ChangeLog 1089 MD5 f8d10f350e91f30316ea4e1bd1e76470 metadata.xml 254 -MD5 17408c0384a26ed7a4f70ee154ca61c3 log4cxx-0.9.7.ebuild 1468 +MD5 b42ec2c258ba6baa886ddacdb365a621 log4cxx-0.9.7.ebuild 1552 MD5 50fe13b5c404fa59faeaebe40f36b6be files/log4cxx-0.9.7-gentoo.diff 750 MD5 1135167eb4745c4a16791f44317ba88b files/digest-log4cxx-0.9.5 65 MD5 a94dc071335f2e2545d523996053a685 files/digest-log4cxx-0.9.7 65 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.2.6 (GNU/Linux) - -iD8DBQFByZAFEZCkKN40op4RAuxHAJwJ3R0aLzG4TCvlGv3Kg8MyU1a1zgCbBat8 -G5NqJOHmkM+FwQ0VnB+L60A= -=Folc ------END PGP SIGNATURE----- diff --git a/dev-libs/log4cxx/log4cxx-0.9.7.ebuild b/dev-libs/log4cxx/log4cxx-0.9.7.ebuild index 947554c8f4a8..eeb244c6b001 100644 --- a/dev-libs/log4cxx/log4cxx-0.9.7.ebuild +++ b/dev-libs/log4cxx/log4cxx-0.9.7.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cxx/log4cxx-0.9.7.ebuild,v 1.1 2004/12/22 15:17:16 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/log4cxx/log4cxx-0.9.7.ebuild,v 1.2 2004/12/23 17:09:36 ka0ttic Exp $ inherit eutils @@ -36,9 +36,10 @@ src_compile() { --enable-html-docs --enable-latex-docs" || \ myconf="${myconf} --disable-doxygen --disable-dot --disable-html-docs" use smtp && myconf="${myconf} --with-SMTP=libsmtp" + # it's broken, so we must do this rather than use_enable + use unicode && myconf="${myconf} --enable-unicode" econf \ - $(use_enable unicode) \ $(use_with odbc ODBC) \ ${myconf} || die "econf failed" emake -j1 || die "emake failed" |