diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2011-09-29 02:09:42 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2011-09-29 02:09:42 +0000 |
commit | da4e63a328681b1b951ddf5de6c4f00c2aeef8b3 (patch) | |
tree | 4bb800e74741753f24bb527723e66e42e1d779f3 /dev-libs/chmlib | |
parent | Copy descriptive text for google-chrome mask from chromium (diff) | |
download | gentoo-2-da4e63a328681b1b951ddf5de6c4f00c2aeef8b3.tar.gz gentoo-2-da4e63a328681b1b951ddf5de6c4f00c2aeef8b3.tar.bz2 gentoo-2-da4e63a328681b1b951ddf5de6c4f00c2aeef8b3.zip |
Enable USE="examples" by default. Enough packages depend on it. (bug #384559
by Bibär.ch)
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/chmlib')
-rw-r--r-- | dev-libs/chmlib/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/chmlib/chmlib-0.40-r1.ebuild | 4 | ||||
-rw-r--r-- | dev-libs/chmlib/chmlib-0.40.ebuild | 31 |
3 files changed, 8 insertions, 34 deletions
diff --git a/dev-libs/chmlib/ChangeLog b/dev-libs/chmlib/ChangeLog index d41a55bfbb0d..deffa64a3a79 100644 --- a/dev-libs/chmlib/ChangeLog +++ b/dev-libs/chmlib/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/chmlib # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/ChangeLog,v 1.22 2011/03/21 16:55:28 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/ChangeLog,v 1.23 2011/09/29 02:09:38 dirtyepic Exp $ + + 29 Sep 2011; Ryan Hill <dirtyepic@gentoo.org> -chmlib-0.40.ebuild, + chmlib-0.40-r1.ebuild: + Enable USE="examples" by default. Enough packages depend on it. (bug #384559 + by Bibär.ch) 21 Mar 2011; Kacper Kowalik <xarthisius@gentoo.org> chmlib-0.40-r1.ebuild: ppc64 stable wrt #352473 diff --git a/dev-libs/chmlib/chmlib-0.40-r1.ebuild b/dev-libs/chmlib/chmlib-0.40-r1.ebuild index 44b9049b9e1c..5b70fcc51fb6 100644 --- a/dev-libs/chmlib/chmlib-0.40-r1.ebuild +++ b/dev-libs/chmlib/chmlib-0.40-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/chmlib-0.40-r1.ebuild,v 1.7 2011/03/21 16:55:28 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/chmlib-0.40-r1.ebuild,v 1.8 2011/09/29 02:09:38 dirtyepic Exp $ EAPI="3" @@ -13,7 +13,7 @@ SRC_URI="http://www.jedrea.com/${PN}/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 x86" -IUSE="examples static-libs" +IUSE="+examples static-libs" DOCS=(AUTHORS NEWS README) PATCHES=( diff --git a/dev-libs/chmlib/chmlib-0.40.ebuild b/dev-libs/chmlib/chmlib-0.40.ebuild deleted file mode 100644 index 8f587f4b834a..000000000000 --- a/dev-libs/chmlib/chmlib-0.40.ebuild +++ /dev/null @@ -1,31 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/chmlib-0.40.ebuild,v 1.6 2009/10/12 19:20:04 jer Exp $ - -inherit eutils multilib flag-o-matic versionator - -DESCRIPTION="Library for MS CHM (compressed html) file format plus extracting and http server utils" -HOMEPAGE="http://www.jedrea.com/chmlib/" -SRC_URI="http://www.jedrea.com/${PN}/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 hppa ~ia64 ppc ppc64 x86" -IUSE="" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${PN}-0.39-stdtypes.patch - epatch "${FILESDIR}"/${P}-headers.patch -} - -src_compile() { - econf --enable-examples || die "econf failed" - emake || die -} - -src_install() { - emake install DESTDIR="${D}" || die - dodoc AUTHORS NEWS README -} |