diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-15 20:59:22 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-06-15 20:59:22 +0000 |
commit | dab9bc816fd327621d172c80c583f73d6af029a8 (patch) | |
tree | 64bff57d4e024ef23c8c27d84dc368ff26ada22a /app-text/crf++/crf++-0.45.ebuild | |
parent | amd64 stable wrt bug #227107 (diff) | |
download | gentoo-2-dab9bc816fd327621d172c80c583f73d6af029a8.tar.gz gentoo-2-dab9bc816fd327621d172c80c583f73d6af029a8.tar.bz2 gentoo-2-dab9bc816fd327621d172c80c583f73d6af029a8.zip |
Fix 227295, Gcc-4.3 compatibility. Bump to newest, remove old.
(Portage version: 2.1.5.5)
Diffstat (limited to 'app-text/crf++/crf++-0.45.ebuild')
-rw-r--r-- | app-text/crf++/crf++-0.45.ebuild | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/app-text/crf++/crf++-0.45.ebuild b/app-text/crf++/crf++-0.45.ebuild deleted file mode 100644 index 59778080b47d..000000000000 --- a/app-text/crf++/crf++-0.45.ebuild +++ /dev/null @@ -1,40 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/crf++/crf++-0.45.ebuild,v 1.2 2007/05/02 17:21:46 usata Exp $ - -inherit eutils - -MY_P="${P/crf/CRF}" -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Yet Another CRF toolkit for segmenting/labelling sequential data" -HOMEPAGE="http://crfpp.sourceforge.net/" -SRC_URI="mirror://sourceforge/crfpp/${MY_P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="~x86 ~amd64" - -IUSE="examples" - -DEPEND="" - -src_test() { - for task in example/* ; do - cd ${task} - ./exec.sh || die "failed test in ${task}" - cd - - done -} - -src_install() { - make DESTDIR=${D} install || die - - dodoc AUTHORS README - dohtml doc/* - - if use examples ; then - insinto /usr/share/doc/${PF} - doins -r example - fi -} |