[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Gsrc-commit] /srv/bzr/gsrc/trunk r1521: add intlfonts at 1.2.1
From: |
Brandon Invergo |
Subject: |
[Gsrc-commit] /srv/bzr/gsrc/trunk r1521: add intlfonts at 1.2.1 |
Date: |
Sat, 22 Dec 2012 18:48:38 +0100 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 1521
committer: Brandon Invergo <address@hidden>
branch nick: trunk
timestamp: Sat 2012-12-22 18:48:38 +0100
message:
add intlfonts at 1.2.1
added:
gnu/intlfonts/
gnu/intlfonts/Makefile
gnu/intlfonts/config.mk
gnu/intlfonts/files/
gnu/intlfonts/files/intlfonts-1.2.1-fix-install.diff
gnu/intlfonts/sha256sums
modified:
TODO
=== modified file 'TODO'
--- a/TODO 2012-12-17 22:47:27 +0000
+++ b/TODO 2012-12-22 17:48:38 +0000
@@ -59,7 +59,7 @@
**** TODO gar.master.mk
*** TODO clean out unnecessary sites from gar.master.mk
*** TODO (maybe) clean out unnecessary rules from gar.lib.mk
-* GNU packages [343/452] [75%]
+* GNU packages [344/452] [76%]
** IGNORE 3dkit (decommissioned)
** DONE 3dldf
CLOSED: [2012-12-16 Sun 20:11]
@@ -519,7 +519,8 @@
CLOSED: [2012-12-16 Sun 20:12]
** DONE inetutils
CLOSED: [2012-12-16 Sun 20:12]
-** TODO intlfonts
+** DONE intlfonts
+ CLOSED: [2012-12-22 Sat 18:48]
** DONE jacal
CLOSED: [2012-12-16 Sun 20:12]
** TODO java-getopt
=== added directory 'gnu/intlfonts'
=== added file 'gnu/intlfonts/Makefile'
--- a/gnu/intlfonts/Makefile 1970-01-01 00:00:00 +0000
+++ b/gnu/intlfonts/Makefile 2012-12-22 17:48:38 +0000
@@ -0,0 +1,21 @@
+NAME = Intlfonts
+GARNAME = intlfonts
+GARVERSION = 1.2.1
+HOME_URL = http://www.gnu.org/software/intlfonts
+DESCRIPTION = Free X11 fonts for all the characters Emacs can handle
+
+######################################################################
+
+MASTER_SITES = $(MASTER_GNU)
+MASTER_SUBDIR = $(GARNAME)/
+DISTFILES = $(DISTNAME).tar.gz
+SIGFILES =
+PATCHFILES = $(DISTNAME)-fix-install.diff
+
+BUILDDEPS =
+LIBDEPS =
+
+######################################################################
+
+include ../../gar.lib/auto.mk
+include config.mk
=== added file 'gnu/intlfonts/config.mk'
--- a/gnu/intlfonts/config.mk 1970-01-01 00:00:00 +0000
+++ b/gnu/intlfonts/config.mk 2012-12-22 17:48:38 +0000
@@ -0,0 +1,4 @@
+## Configuration options for intlfonts ##
+
+CONFIGURE_OPTS ?=
+BUILD_OPTS ?=
=== added directory 'gnu/intlfonts/files'
=== added file 'gnu/intlfonts/files/intlfonts-1.2.1-fix-install.diff'
--- a/gnu/intlfonts/files/intlfonts-1.2.1-fix-install.diff 1970-01-01
00:00:00 +0000
+++ b/gnu/intlfonts/files/intlfonts-1.2.1-fix-install.diff 2012-12-22
17:48:38 +0000
@@ -0,0 +1,110 @@
+diff -x config.log -x config.status -ru work/intlfonts-1.2.1/Makefile.in
work/intlfonts-1.2.1/Makefile.in
+--- work/intlfonts-1.2.1/Makefile.in 1999-12-08 07:25:45.000000000 +0100
++++ work/intlfonts-1.2.1/Makefile.in 2012-12-22 18:46:42.284562288 +0100
+@@ -1,3 +1,4 @@
++DESTDIR =
+ fontdir = @fontdir@
+ srcdir address@hidden@
+
+@@ -26,66 +27,66 @@
+ clean:
+
+ pcf: FRC
+- @if [ -d ${fontdir} ] ; then \
++ @if [ -d $(DESTDIR)${fontdir} ] ; then \
+ echo "Deleting PCF fonts installed by the previous intlfonts..." ; \
+- $(SHELL) ${srcdir}/rmoldfnt.sh ${fontdir} ; \
++ $(SHELL) ${srcdir}/rmoldfnt.sh $(DESTDIR)${fontdir} ; \
+ else \
+- $(INSTALL) -d ${fontdir} ; \
++ $(INSTALL) -d $(DESTDIR)${fontdir} ; \
+ fi
+- @if [ -f ${fontdir}/fonts.alias ] ; then \
+- cat ${fontdir}/fonts.alias > ${fontdir}/temp ; \
++ @if [ -f $(DESTDIR)${fontdir}/fonts.alias ] ; then \
++ cat $(DESTDIR)${fontdir}/fonts.alias > $(DESTDIR)${fontdir}/temp ; \
+ else \
+- rm -f ${fontdir}/temp ; \
++ rm -f $(DESTDIR)${fontdir}/temp ; \
+ fi
+ @for dirs in ${SUBDIRS} ${SUBDIRS_X} ${SUBDIRS_BIG}; do \
+ if [ -d ${srcdir}/$${dirs} ] ; then \
+ for f in ${srcdir}/$${dirs}/*.bdf; do \
+ FONT=`basename $${f} .bdf`.pcf ; \
+- echo "Installing ${fontdir}/$${FONT}..." ; \
+- $(BDFTOPCF) $${f} > ${fontdir}/$${FONT} ; \
++ echo "Installing $(DESTDIR)${fontdir}/$${FONT}..." ; \
++ $(BDFTOPCF) $${f} > $(DESTDIR)${fontdir}/$${FONT} ; \
+ done ; \
+ if [ -f ${srcdir}/$${dirs}/fonts.alias ] ; then \
+- cat ${srcdir}/$${dirs}/fonts.alias >> ${fontdir}/temp ; \
++ cat ${srcdir}/$${dirs}/fonts.alias >> $(DESTDIR)${fontdir}/temp ;
\
+ fi ; \
+ else true; fi ; \
+ done
+- @if [ -f ${fontdir}/temp ] ; then \
+- sort < ${fontdir}/temp | uniq > ${fontdir}/fonts.alias ; \
+- rm -f ${fontdir}/temp ; \
++ @if [ -f $(DESTDIR)${fontdir}/temp ] ; then \
++ sort < $(DESTDIR)${fontdir}/temp | uniq >
$(DESTDIR)${fontdir}/fonts.alias ; \
++ rm -f $(DESTDIR)${fontdir}/temp ; \
+ fi
+ @if [ "${COMPRESS}" != "no" ] ; then \
+ echo "Compressing PCF fonts by ${COMPRESS}..." ; \
+- rm -f ${fontdir}/*.pcf.* ; \
+- ${COMPRESS} ${fontdir}/*.pcf ; \
++ rm -f $(DESTDIR)${fontdir}/*.pcf.* ; \
++ ${COMPRESS} $(DESTDIR)${fontdir}/*.pcf ; \
+ fi
+- @echo "Making ${fontdir}/fonts.dir..."
+- $(MKFONTDIR) ${fontdir}
++ @echo "Making $(DESTDIR)${fontdir}/fonts.dir..."
++ $(MKFONTDIR) $(DESTDIR)${fontdir}
+ @echo "-----------------------------------------------------------"
+ @echo "Read README for how to inform X server about the new fonts."
+ @echo "-----------------------------------------------------------"
+
+ bdf: FRC
+- @if [ -d ${fontdir}/bdf ] ; then \
++ @if [ -d $(DESTDIR)${fontdir}/bdf ] ; then \
+ echo "Deleting BDF fonts installed by the previous intlfonts..." ; \
+- $(SHELL) ${srcdir}/rmoldfnt.sh ${fontdir}/bdf ; \
++ $(SHELL) ${srcdir}/rmoldfnt.sh $(DESTDIR)${fontdir}/bdf ; \
+ else \
+- $(INSTALL) -d ${fontdir}/bdf ; \
++ $(INSTALL) -d $(DESTDIR)${fontdir}/bdf ; \
+ fi
+ @echo "Installing BDF fonts..."
+ @for dirs in ${SUBDIRS} ${SUBDIRS_X} ${SUBDIRS_BIG}; do \
+ if [ -d ${srcdir}/$${dirs} ] ; then \
+ for f in ${srcdir}/$${dirs}/*.bdf; do \
+- $(INSTALL) -m 0444 $${f} ${fontdir}/bdf ; \
++ $(INSTALL) -m 0444 $${f} $(DESTDIR)${fontdir}/bdf ; \
+ done ; \
+ else true; fi ; \
+ done
+
+ type1: FRC
+ @if [ -d ${srcdir}/Type1 ] ; then \
+- [ -d ${fontdir}/Type1 ] || $(INSTALL) -d ${fontdir}/Type1 ; \
++ [ -d $(DESTDIR)${fontdir}/Type1 ] || $(INSTALL) -d
$(DESTDIR)${fontdir}/Type1 ; \
+ echo "Installing Type1 fonts..." ; \
+ for f in ${srcdir}/Type1/*.?f?; do \
+- $(INSTALL) -c -m 0444 $${f} ${fontdir}/Type1 ; \
++ $(INSTALL) -c -m 0444 $${f} $(DESTDIR)${fontdir}/Type1 ; \
+ done ; \
+ else \
+ echo "No Type1 fonts" ; \
+@@ -93,10 +94,10 @@
+
+ truetype: FRC
+ @if [ -d ${srcdir}/TrueType ] ; then \
+- [ -d ${fontdir}/TrueType ] || $(INSTALL) -d ${fontdir}/TrueType ; \
++ [ -d $(DESTDIR)${fontdir}/TrueType ] || $(INSTALL) -d
$(DESTDIR)${fontdir}/TrueType ; \
+ echo "Installing TrueType fonts..." ; \
+ for f in ${srcdir}/TrueType/*.ttf; do \
+- $(INSTALL) -c -m 0444 $${f} ${fontdir}/TrueType ; \
++ $(INSTALL) -c -m 0444 $${f} $(DESTDIR)${fontdir}/TrueType ; \
+ done ; \
+ else \
+ echo "No TrueType fonts" ; \
=== added file 'gnu/intlfonts/sha256sums'
--- a/gnu/intlfonts/sha256sums 1970-01-01 00:00:00 +0000
+++ b/gnu/intlfonts/sha256sums 2012-12-22 17:48:38 +0000
@@ -0,0 +1,2 @@
+f208ec06573e935116d27994be4b58f8121184f855a85acd2cdb8848479a10f3
download/intlfonts-1.2.1.tar.gz
+0c01be5bc480768787b59434a7ef087ed4c4619d30c2222963377f641313acb6
download/intlfonts-1.2.1-fix-install.diff
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Gsrc-commit] /srv/bzr/gsrc/trunk r1521: add intlfonts at 1.2.1,
Brandon Invergo <=