diff options
author | George Shapovalov <george@gentoo.org> | 2002-06-21 01:51:02 +0000 |
---|---|---|
committer | George Shapovalov <george@gentoo.org> | 2002-06-21 01:51:02 +0000 |
commit | 47392a2658f2668ac1336ef57773a7404bb3f2ec (patch) | |
tree | b6c02c0d67b117df1856deb0ffddc18532075e80 /dev-libs | |
parent | New revision: Added missing dep to dev-libs/libunicode. Fixes bug #3959 (diff) | |
download | historical-47392a2658f2668ac1336ef57773a7404bb3f2ec.tar.gz historical-47392a2658f2668ac1336ef57773a7404bb3f2ec.tar.bz2 historical-47392a2658f2668ac1336ef57773a7404bb3f2ec.zip |
fix to problematic info file
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/fftw/ChangeLog | 13 | ||||
-rw-r--r-- | dev-libs/fftw/fftw-2.1.3.ebuild | 11 |
2 files changed, 20 insertions, 4 deletions
diff --git a/dev-libs/fftw/ChangeLog b/dev-libs/fftw/ChangeLog index c93f1e2ba056..fe4202638cf9 100644 --- a/dev-libs/fftw/ChangeLog +++ b/dev-libs/fftw/ChangeLog @@ -1,8 +1,15 @@ # ChangeLog for dev-libs/fftw # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL # Maintainer: George Shapovalov <george@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/ChangeLog,v 1.1 2002/05/22 17:47:23 george Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/ChangeLog,v 1.2 2002/06/21 01:51:01 george Exp $ - 27 Apr 2002; George Shapovalov <george@gentoo.org> fftw-2.1.3.ebuild : +*fftw-2.1.3.ebuild (20 June 2002) - Initial release + 20 June 2002; George Shapovalov <george@gentoo.org> fftw-2.1.3.ebuild : + + updated ebuild to fix the top info file + (added menu entry, thanks to Daniel Ahlberg) + + 27 Apr 2002; George Shapovalov <george@gentoo.org> fftw-2.1.3.ebuild : + + Initial release diff --git a/dev-libs/fftw/fftw-2.1.3.ebuild b/dev-libs/fftw/fftw-2.1.3.ebuild index 204e8afd8c5d..748d1f51d1d5 100644 --- a/dev-libs/fftw/fftw-2.1.3.ebuild +++ b/dev-libs/fftw/fftw-2.1.3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Maintainer: George Shapovalov <george@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3.ebuild,v 1.2 2002/04/27 23:08:36 bangert Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/fftw/fftw-2.1.3.ebuild,v 1.3 2002/06/21 01:51:02 george Exp $ S="${WORKDIR}/${P}" @@ -71,13 +71,22 @@ src_install () { #both builds are installed in the same place #libs are distinguished by preffix (s or d), see docs for details cd "${S}-single" + make DESTDIR=${D} install || die cd "${S}-double" + + # fix info file + echo "INFO-DIR-SECTION Libraries" >>$fftw.info + echo "START-INFO-DIR-ENTRY" >>doc/fftw.info + echo "* fftw: (fftw). C subroutine library for computing the Discrete Fourier Transform (DFT)" >>doc/fftw.info + echo "END-INFO-DIR-ENTRY" >>doc/fftw.info + make DESTDIR=${D} install || die # Install documentation. cd "${S}-single" + dodoc AUTHORS ChangeLog COPYING INSTALL NEWS TODO dohtml doc/fftw*.html } |