For no_NO.ISO8859-1: The Last Changed Date of no_NO was on 2013-11-07 16:37:11 +0000 (Thu, 07 Nov 2013). Of all the file, only the handbook has any translations of which there are only basics/chapter.xml, bibliography/chapter.xml, and install/chapter.xml. The latter of which still documents sysinstall. I also can't seem to find any reference to the files here: https://download.freebsd.org/ftp/doc/. For sr_YU.ISO8859-2: no content in-tree at all. Discussed with: blackend
		
			
				
	
	
		
			57 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			57 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| # $FreeBSD$
 | |
| #
 | |
| # The user can override the default list of languages to build and install
 | |
| # with the DOC_LANG variable.
 | |
| #
 | |
| .if defined(ENGLISH_ONLY) && !empty(ENGLISH_ONLY)
 | |
| DOC_LANG=	en_US.ISO8859-1
 | |
| .endif
 | |
| 
 | |
| .if defined(DOC_LANG) && !empty(DOC_LANG)
 | |
| SUBDIR = 	${DOC_LANG}
 | |
| .else
 | |
| SUBDIR =	en_US.ISO8859-1
 | |
| SUBDIR+=	bn_BD.UTF-8
 | |
| SUBDIR+=	da_DK.ISO8859-1
 | |
| SUBDIR+=	de_DE.ISO8859-1
 | |
| SUBDIR+=	el_GR.ISO8859-7
 | |
| SUBDIR+=	es_ES.ISO8859-1
 | |
| SUBDIR+=	fr_FR.ISO8859-1
 | |
| SUBDIR+=	hu_HU.ISO8859-2
 | |
| SUBDIR+=	it_IT.ISO8859-15
 | |
| SUBDIR+=	ja_JP.eucJP
 | |
| SUBDIR+=	ko_KR.UTF-8
 | |
| SUBDIR+=	mn_MN.UTF-8
 | |
| SUBDIR+=	nl_NL.ISO8859-1
 | |
| SUBDIR+=	pl_PL.ISO8859-2
 | |
| SUBDIR+=	pt_BR.ISO8859-1
 | |
| SUBDIR+=	ru_RU.KOI8-R
 | |
| SUBDIR+=	tr_TR.ISO8859-9
 | |
| SUBDIR+=	zh_CN.UTF-8
 | |
| SUBDIR+=	zh_TW.UTF-8
 | |
| .endif
 | |
| 
 | |
| SUBDIR+=	share
 | |
| 
 | |
| DOC_PREFIX?=   ${.CURDIR}
 | |
| 
 | |
| .if exists(/usr/bin/svnlite)
 | |
| SVN?=		/usr/bin/svnlite
 | |
| .else
 | |
| SVN?=		/usr/local/bin/svn
 | |
| .endif
 | |
| 
 | |
| update:
 | |
| .if !exists(${SVN})
 | |
| 	@${ECHODIR} "--------------------------------------------------------------"
 | |
| 	@${ECHODIR} ">>> ${SVN} is required to update ${.CURDIR}"
 | |
| 	@${ECHODIR} "--------------------------------------------------------------"
 | |
| 	@${EXIT}
 | |
| .else
 | |
| 	@${ECHODIR} "--------------------------------------------------------------"
 | |
| 	@${ECHODIR} ">>> Updating ${.CURDIR} from svn repository"
 | |
| 	@${ECHODIR} "--------------------------------------------------------------"
 | |
| 	cd ${.CURDIR}; ${SVN} update
 | |
| .endif
 | |
| 
 | |
| .include "${DOC_PREFIX}/share/mk/doc.project.mk"
 |