Fri Jan 11 23:25:48 2013 UTC ()
Use gzcat + plain tar.


(joerg)
diff -r1.14 -r1.15 pkgsrc/fonts/cyr-rfx-share/Makefile.common

cvs diff -r1.14 -r1.15 pkgsrc/fonts/cyr-rfx-share/Makefile.common (expand / switch to unified diff)

--- pkgsrc/fonts/cyr-rfx-share/Makefile.common 2012/10/03 18:28:18 1.14
+++ pkgsrc/fonts/cyr-rfx-share/Makefile.common 2013/01/11 23:25:48 1.15
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: Makefile.common,v 1.14 2012/10/03 18:28:18 asau Exp $ 1# $NetBSD: Makefile.common,v 1.15 2013/01/11 23:25:48 joerg Exp $
2 2
3# used by fonts/cyr-rfx-bulgarian-mik/Makefile 3# used by fonts/cyr-rfx-bulgarian-mik/Makefile
4# used by fonts/cyr-rfx-ibm-cp866/Makefile 4# used by fonts/cyr-rfx-ibm-cp866/Makefile
5# used by fonts/cyr-rfx-iso10646_0400/Makefile 5# used by fonts/cyr-rfx-iso10646_0400/Makefile
6# used by fonts/cyr-rfx-iso8859_15/Makefile 6# used by fonts/cyr-rfx-iso8859_15/Makefile
7# used by fonts/cyr-rfx-iso8859_5/Makefile 7# used by fonts/cyr-rfx-iso8859_5/Makefile
8# used by fonts/cyr-rfx-koi8-o/Makefile 8# used by fonts/cyr-rfx-koi8-o/Makefile
9# used by fonts/cyr-rfx-koi8-ru/Makefile 9# used by fonts/cyr-rfx-koi8-ru/Makefile
10# used by fonts/cyr-rfx-koi8-ub/Makefile 10# used by fonts/cyr-rfx-koi8-ub/Makefile
11# used by fonts/cyr-rfx-koi8_1/Makefile 11# used by fonts/cyr-rfx-koi8_1/Makefile
12# used by fonts/cyr-rfx-mac-cyrillic/Makefile 12# used by fonts/cyr-rfx-mac-cyrillic/Makefile
13# used by fonts/cyr-rfx-windows_1251/Makefile 13# used by fonts/cyr-rfx-windows_1251/Makefile
14# used by fonts/cyr-rfx-winlatin_1/Makefile 14# used by fonts/cyr-rfx-winlatin_1/Makefile
@@ -20,29 +20,29 @@ MASTER_SITES= \ @@ -20,29 +20,29 @@ MASTER_SITES= \
20 http://www.inp.nsk.su/~bolkhov/files/fonts/cyr-rfx/ 20 http://www.inp.nsk.su/~bolkhov/files/fonts/cyr-rfx/
21EXTRACT_SUFX= .tgz 21EXTRACT_SUFX= .tgz
22 22
23MAINTAINER= shattered@NetBSD.org 23MAINTAINER= shattered@NetBSD.org
24HOMEPAGE= http://www.inp.nsk.su/~bolkhov/files/fonts/cyr-rfx/00index.en.html 24HOMEPAGE= http://www.inp.nsk.su/~bolkhov/files/fonts/cyr-rfx/00index.en.html
25COMMENT= Cyrillic X11 fonts in ${CYR_RFX_ENCODING} encoding 25COMMENT= Cyrillic X11 fonts in ${CYR_RFX_ENCODING} encoding
26DIST_SUBDIR= cyr-rfx 26DIST_SUBDIR= cyr-rfx
27 27
28USE_X11BASE= yes 28USE_X11BASE= yes
29 29
30NO_CONFIGURE= yes 30NO_CONFIGURE= yes
31NO_BUILD= yes 31NO_BUILD= yes
32 32
33USE_TOOLS+= gtar 33USE_TOOLS+= tar gzcat
34 34
35FONTS_DIRS.x11+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/75dpi 35FONTS_DIRS.x11+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/75dpi
36FONTS_DIRS.x11+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/misc 36FONTS_DIRS.x11+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/misc
37REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING} 37REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}
38REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/75dpi 38REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/75dpi
39REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/misc 39REQD_DIRS+= ${PREFIX}/lib/X11/fonts/local/${CYR_RFX_ENCODING}/misc
40 40
41INSTALLATION_DIRS= lib/X11/fonts/local 41INSTALLATION_DIRS= lib/X11/fonts/local
42 42
43do-install: 43do-install:
44 cd ${DESTDIR}${PREFIX}/lib/X11/fonts/local && \ 44 cd ${DESTDIR}${PREFIX}/lib/X11/fonts/local && \
45 ${GTAR} xzf ${_DISTDIR}/${DISTFILES} \ 45 ${GZCAT} ${_DISTDIR}/${DISTFILES} | \
46 ${CYR_RFX_ENCODING}/misc ${CYR_RFX_ENCODING}/75dpi 46 ${TAR} xf - ${CYR_RFX_ENCODING}/misc ${CYR_RFX_ENCODING}/75dpi
47 47
48.include "../../mk/bsd.pkg.mk" 48.include "../../mk/bsd.pkg.mk"