summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/yaz++/yaz++-0.9.ebuild35
1 files changed, 0 insertions, 35 deletions
diff --git a/dev-libs/yaz++/yaz++-0.9.ebuild b/dev-libs/yaz++/yaz++-0.9.ebuild
deleted file mode 100644
index 744f0605ccb4..000000000000
--- a/dev-libs/yaz++/yaz++-0.9.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz++/yaz++-0.9.ebuild,v 1.3 2005/07/20 11:04:41 dholm Exp $
-
-inherit eutils
-
-DESCRIPTION="C++ addon for the yaz development libraries"
-HOMEPAGE="http://www.indexdata.dk/yazplusplus"
-SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
-
-LICENSE="YAZ"
-SLOT="0"
-KEYWORDS="~ppc ~x86"
-IUSE=""
-RDEPEND="dev-libs/yaz"
-DEPEND="${RDEPEND}
- sys-devel/autoconf"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- autoconf || die "autoconf failed"
-}
-
-src_compile() {
- econf --enable-shared || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- docdir="/usr/share/doc/${PF}"
- make DESTDIR="${D}" docdir="${docdir}" install || die "einstall failed"
- docinto html
- mv -f ${D}${docdir}/*.{html,css,png} ${D}${docdir}/html/ || die "Failed to move HTML docs"
-}