Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 26 Nov 2002 11:30:03 -0800 (PST)
From:      "Miroslav Pendev" <miro@cybershade.us>
To:        freebsd-ports@FreeBSD.org
Subject:   Re: ports/45357: PATCH: textproc/ispell - added bulgarian dictionary
Message-ID:  <200211261930.gAQJU3Qi070489@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/45357; it has been noted by GNATS.

From: "Miroslav Pendev" <miro@cybershade.us>
To: <bug-followup@FreeBSD.org>
Cc:  
Subject: Re: ports/45357: PATCH: textproc/ispell - added bulgarian dictionary
Date: Tue, 26 Nov 2002 14:20:51 -0500

 This is a multi-part message in MIME format.
 
 ------=_NextPart_000_00E5_01C29557.05B16380
 Content-Type: text/plain;
 	charset="Windows-1252"
 Content-Transfer-Encoding: 7bit
 
 In the meantime the project is moved to sourceforge.net.
 
 Some changes into ispell-bg-2.1.tar.gz file, too...
 
 Miro
 ------=_NextPart_000_00E5_01C29557.05B16380
 Content-Type: application/octet-stream;
 	name="bulgarian.diff"
 Content-Transfer-Encoding: quoted-printable
 Content-Disposition: attachment;
 	filename="bulgarian.diff"
 
 diff -ruN ispell.orig/Makefile ispell/Makefile=0A=
 --- ispell.orig/Makefile	Thu Jul 18 20:34:47 2002=0A=
 +++ ispell/Makefile	Mon Nov 25 23:56:24 2002=0A=
 @@ -33,7 +33,7 @@=0A=
  MUNCHLIST=3D	${WRKSRC}/munchlist=0A=
  DATADIR=3D	${PREFIX}/share/ispell=0A=
  =0A=
 -.if (!defined(ISPELL_IT) && !defined(ISPELL_FR) && !defined(ISPELL_SE) =
 && !defined(ISPELL_BR) && !defined(ISPELL_DENEU) && =
 !defined(ISPELL_DEALT) && !defined(ISPELL_BRITISH) && =
 !defined(ISPELL_NO) && !defined(ISPELL_NL) && !defined(ISPELL_DA) && =
 !defined(ISPELL_AF) && !defined(ISPELL_FI) && !defined(ISPELL_PL))=0A=
 +.if (!defined(ISPELL_IT) && !defined(ISPELL_FR) && !defined(ISPELL_SE) =
 && !defined(ISPELL_BR) && !defined(ISPELL_DENEU) && =
 !defined(ISPELL_DEALT) && !defined(ISPELL_BRITISH) && =
 !defined(ISPELL_NO) && !defined(ISPELL_NL) && !defined(ISPELL_DA) && =
 !defined(ISPELL_AF) && !defined(ISPELL_FI) && !defined(ISPELL_PL)) && =
 !defined(ISPELL_BG)=0A=
  pre-everything::=0A=
  	@${ECHO_MSG} =
 '*********************************************************'=0A=
  	@${ECHO_MSG} '* You can add further dictionaries:                     =
 *'=0A=
 @@ -42,6 +42,7 @@=0A=
  	@${ECHO_MSG} '*  - British                   ISPELL_BRITISH=3Dyes      =
  *'=0A=
  	@${ECHO_MSG} '*    (replaces the American dictionary)                 =
 *'=0A=
  	@${ECHO_MSG} '*  - Brazilian Portuguese      ISPELL_BR=3Dyes           =
  *'=0A=
 +	@${ECHO_MSG} '*  - Bulgarian                 ISPELL_BG=3Dyes           =
  *'=0A=
  	@${ECHO_MSG} '*  - Dutch                     ISPELL_NL=3Dyes           =
  *'=0A=
  	@${ECHO_MSG} '*  - Danish                    ISPELL_DA=3Dyes           =
  *'=0A=
  	@${ECHO_MSG} '*  - Finnish                   ISPELL_FI=3Dyes           =
  *'=0A=
 @@ -145,6 +146,15 @@=0A=
  EXTRA_DICT+=3D	${PLDISTFILE}=0A=
  EXTRACT_ONLY+=3D	${PLDISTFILE}=0A=
  .endif=0A=
 +.if defined(ISPELL_BG)=0A=
 +MASTER_SITES+=3D	${MASTER_SITE_SOURCEFORGE} \=0A=
 +		${MASTER_SITE_LOCAL}=0A=
 +MASTER_SITE_SUBDIR=3D bgoffice=0A=
 +BGDISTFILE=3D	ispell-bg-2.1.tar.gz=0A=
 +MASKBITS?=3D	64=0A=
 +EXTRA_DICT+=3D	${BGDISTFILE}=0A=
 +EXTRACT_ONLY+=3D	${BGDISTFILE}=0A=
 +.endif=0A=
  =0A=
  DISTFILES+=3D	${EXTRA_DICT}=0A=
  .endif=0A=
 @@ -268,6 +278,12 @@=0A=
  		${CAT} A B C imiona-A imiona-B fachowe/* > polish.dic && \=0A=
  		${BUILDHASH} polish.dic polish.aff polish.hash=0A=
  .endif=0A=
 +.if defined(ISPELL_BG)=0A=
 +	@cd ${WRKDIR}/${BGDISTFILE:S=3D.tar.gz=3D=3D} && \=0A=
 +		${BUILDHASH} data/bulgarian.dict data/bulgarian.aff =
 data/bulgarian.hash && \=0A=
 +		${CP} data/bulgarian.aff bulgarian.aff && \=0A=
 +		${CP} data/bulgarian.hash bulgarian.hash=0A=
 +.endif=0A=
  =0A=
  pre-install:=0A=
  	@if [ ! -d ${DATADIR} ]; then ${MKDIR} ${DATADIR}; fi=0A=
 @@ -322,6 +338,10 @@=0A=
  .if defined(ISPELL_PL)=0A=
  	@${CAT} ${MASTERDIR}/pkg-plist.pl >> ${TMPPLIST}=0A=
  .endif=0A=
 +.if defined(ISPELL_BG)=0A=
 +	@${CAT} ${MASTERDIR}/pkg-plist.bg >> ${TMPPLIST}=0A=
 +.endif=0A=
 +=0A=
  	@${ECHO_CMD} "@dirrm share/ispell" >> ${TMPPLIST}=0A=
  =0A=
  .include <bsd.port.mk>=0A=
 diff -ruN ispell.orig/distinfo ispell/distinfo=0A=
 --- ispell.orig/distinfo	Sun Jun 23 19:34:02 2002=0A=
 +++ ispell/distinfo	Mon Nov 25 22:04:10 2002=0A=
 @@ -14,3 +14,4 @@=0A=
  MD5 (finnish.medium.aff.bz2) =3D d53611daaed94c8b17869a60e4ae61d9=0A=
  MD5 (finnish.large.aff.bz2) =3D 9c7bfc8850e958a5d2aec579f5d8903c=0A=
  MD5 (ispell-pl-20011004.tar.gz) =3D b224a718fa28bdd888b4e813e0fb897e=0A=
 +MD5 (ispell-bg-2.1.tar.gz) =3D 226ea86d1f10b0bffc816fa149548c4f=0A=
 diff -ruN ispell.orig/pkg-descr ispell/pkg-descr=0A=
 --- ispell.orig/pkg-descr	Sun Jun 23 19:34:02 2002=0A=
 +++ ispell/pkg-descr	Thu Nov 14 21:08:47 2002=0A=
 @@ -6,6 +6,7 @@=0A=
  Included in this port are:=0A=
  	- Afrikaans=0A=
  	- British English=0A=
 +	- Bulgarian=0A=
  	- Danish=0A=
  	- Dutch=0A=
  	- Finnish=0A=
 diff -ruN ispell.orig/pkg-plist.bg ispell/pkg-plist.bg=0A=
 --- ispell.orig/pkg-plist.bg	Wed Dec 31 19:00:00 1969=0A=
 +++ ispell/pkg-plist.bg	Tue Nov 26 00:14:59 2002=0A=
 @@ -0,0 +1,2 @@=0A=
 +share/ispell/bulgarian.aff=0A=
 +share/ispell/bulgarian.hash=0A=
 
 ------=_NextPart_000_00E5_01C29557.05B16380--
 

To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-ports" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200211261930.gAQJU3Qi070489>