summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Hill <dirtyepic@gentoo.org>2009-01-06 05:23:53 +0000
committerRyan Hill <dirtyepic@gentoo.org>2009-01-06 05:23:53 +0000
commitb0426c7a35adf1cb30974b0f116659b0e167a1ab (patch)
treeb03d3059fc61111233dafa0b6f5f4d9f6da0e51c /dev-libs/chmlib
parentwe arent going to have a commit war -- get a patch in (diff)
downloadgentoo-2-b0426c7a35adf1cb30974b0f116659b0e167a1ab.tar.gz
gentoo-2-b0426c7a35adf1cb30974b0f116659b0e167a1ab.tar.bz2
gentoo-2-b0426c7a35adf1cb30974b0f116659b0e167a1ab.zip
Remove old.
(Portage version: 2.2_rc20/cvs/Linux 2.6.27-gentoo-r4 x86_64)
Diffstat (limited to 'dev-libs/chmlib')
-rw-r--r--dev-libs/chmlib/ChangeLog7
-rw-r--r--dev-libs/chmlib/chmlib-0.39.ebuild60
2 files changed, 5 insertions, 62 deletions
diff --git a/dev-libs/chmlib/ChangeLog b/dev-libs/chmlib/ChangeLog
index c92f6d651d7a..78dc26a0f1f8 100644
--- a/dev-libs/chmlib/ChangeLog
+++ b/dev-libs/chmlib/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-libs/chmlib
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/ChangeLog,v 1.6 2008/12/20 15:05:59 nixnut Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/ChangeLog,v 1.7 2009/01/06 05:23:53 dirtyepic Exp $
+
+ 06 Jan 2009; Ryan Hill <dirtyepic@gentoo.org> -chmlib-0.39.ebuild:
+ Remove old.
20 Dec 2008; nixnut <nixnut@gentoo.org> chmlib-0.39-r1.ebuild:
Stable on ppc wrt bug 246209
diff --git a/dev-libs/chmlib/chmlib-0.39.ebuild b/dev-libs/chmlib/chmlib-0.39.ebuild
deleted file mode 100644
index 88c1feefec7a..000000000000
--- a/dev-libs/chmlib/chmlib-0.39.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/chmlib/chmlib-0.39.ebuild,v 1.1 2008/05/13 07:41:34 pva 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"
-DEPEND=">=sys-apps/sed-4"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc x86"
-IUSE=""
-
-MY_PV=$(get_version_component_range 1-2 )
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- sed -i -r "s,(\\\$\\{INSTALLPREFIX\\}),\${DESTDIR}\\1,g;
- s,@LIBTOOL@,libtool,g;
- s,(\\\$\\{INSTALLPREFIX\\})/lib,\1/$(get_libdir),g" \
- Makefile.in || die "sed failed"
-
- if [ "${ARCH}" = "ppc" ]; then
- # In this case it is safe to take this rather
- # stupid action =)
- sed -i "s:__i386__:__powerpc__:" src/chm_lib.c
- fi
-
- if [ "${ARCH}" == "hppa" ]; then
- sed -i "s:__i386__:__hppa__:" src/chm_lib.c
- fi
-}
-
-src_compile() {
- append-flags "-L${S}/src/.libs"
-
- econf --enable-examples=yes|| die "econf failed"
- emake || die
-}
-
-src_install() {
- #Make expects to find these dirs.
- dodir /usr/bin
- dodir /usr/$(get_libdir)
- dodir /usr/include
- dodir /usr/share/doc/${PF}/examples/
-
- make install DESTDIR="${D}"
-
- #Install examples as well.
- insinto /usr/share/doc/${PF}/examples/
- doins src/test_chmLib.c src/enum_chmLib.c src/chm_http.c
-
- dodoc AUTHORS NEWS README
-}