diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-09-06 10:10:58 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-09-06 10:10:58 +0000 |
commit | 2a864788f398a74a9599f098ab7573592c0d7d25 (patch) | |
tree | fe7836fb30bca2d320daea61074b6af7206a7157 /net-mail/balsa | |
parent | Change patch filename (diff) | |
download | historical-2a864788f398a74a9599f098ab7573592c0d7d25.tar.gz historical-2a864788f398a74a9599f098ab7573592c0d7d25.tar.bz2 historical-2a864788f398a74a9599f098ab7573592c0d7d25.zip |
pspell to aspell
Diffstat (limited to 'net-mail/balsa')
-rw-r--r-- | net-mail/balsa/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/balsa/balsa-2.0.1-r2.ebuild | 7 | ||||
-rw-r--r-- | net-mail/balsa/files/configure.diff | 11 |
3 files changed, 23 insertions, 2 deletions
diff --git a/net-mail/balsa/ChangeLog b/net-mail/balsa/ChangeLog index c921178fabdd..424d1ac21810 100644 --- a/net-mail/balsa/ChangeLog +++ b/net-mail/balsa/ChangeLog @@ -1,9 +1,14 @@ # ChangeLog for net-mail/balsa # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-mail/balsa/ChangeLog,v 1.18 2002/09/04 06:06:39 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/balsa/ChangeLog,v 1.19 2002/09/06 10:10:58 seemant Exp $ *balsa-1.4.0-r1 (03 Sep 2002) + 06 Sep 2002; Seemant Kulleen <seemant@gentoo.org> balsa-2.0.1-r2.ebuild : + + Patch up configure file to find laspell instead of the pspell stuff. + Closes bug #7545 by rigo@home.nl (Rigo Ketelings) + 03 Sep 2002; Seemant Kulleen <seemant@gentoo.org> balsa-1.3.6-r2.ebuild balsa-1.4.0-r1.ebuild balsa-2.0.1-r1.ebuild : diff --git a/net-mail/balsa/balsa-2.0.1-r2.ebuild b/net-mail/balsa/balsa-2.0.1-r2.ebuild index fb5e6ea8adcf..bb963357f0e0 100644 --- a/net-mail/balsa/balsa-2.0.1-r2.ebuild +++ b/net-mail/balsa/balsa-2.0.1-r2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/net-mail/balsa/balsa-2.0.1-r2.ebuild,v 1.1 2002/09/04 06:06:39 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/balsa/balsa-2.0.1-r2.ebuild,v 1.2 2002/09/06 10:10:58 seemant Exp $ inherit debug @@ -39,6 +39,11 @@ src_unpack() { # (ricpersi@libero.it) to make balsa compile patch -p0 < ${FILESDIR}/${P}-gentoo.patch || die + # this patch is from Seemant Kulleen to make it compile against aspell + # instead of the deprecated pspell + cd ${S} + patch -p0 < ${FILESDIR}/configure.diff || die + # Workaround for bug #4095, replaces the varmail patch. # by Gabriele Giorgetti <stroke@gentoo.org> diff --git a/net-mail/balsa/files/configure.diff b/net-mail/balsa/files/configure.diff new file mode 100644 index 000000000000..5ba9ee1309ea --- /dev/null +++ b/net-mail/balsa/files/configure.diff @@ -0,0 +1,11 @@ +--- configure Fri Sep 6 02:48:05 2002 ++++ configure.old Fri Sep 6 02:47:40 2002 +@@ -7650,7 +7650,7 @@ + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lpspell -lstdc++ -lpspell-modules $LIBS" ++LIBS="-laspell -lstdc++ $LIBS" + cat >conftest.$ac_ext <<_ACEOF + #line 7655 "configure" + #include "confdefs.h" |