diff options
author | hrs <hrs@FreeBSD.org> | 2005-05-21 18:04:01 +0800 |
---|---|---|
committer | hrs <hrs@FreeBSD.org> | 2005-05-21 18:04:01 +0800 |
commit | ca3f9275ff6c1e83434d943446bf3869cf126066 (patch) | |
tree | dcd7ed9374d9c307abb3371b2de0f85ac069936a | |
parent | f7e528f3061d1354f94e6d60e5e82f626d2206dc (diff) | |
download | freebsd-ports-gnome-ca3f9275ff6c1e83434d943446bf3869cf126066.tar.gz freebsd-ports-gnome-ca3f9275ff6c1e83434d943446bf3869cf126066.tar.zst freebsd-ports-gnome-ca3f9275ff6c1e83434d943446bf3869cf126066.zip |
- Fix incomplete replacement of a keyword "@prefix@".
- Regenerate info files from the corresponding .texi files.
- Remove an empty file.
Submitted by: KIMURA Yasuhiro (committed with modification)
PR: ports/80644
-rw-r--r-- | editors/psgml/Makefile | 2 | ||||
-rw-r--r-- | editors/psgml/files/patch-ad | 33 | ||||
-rw-r--r-- | editors/psgml/scripts/configure | 0 |
3 files changed, 30 insertions, 5 deletions
diff --git a/editors/psgml/Makefile b/editors/psgml/Makefile index 13e6af17ac0c..27389c6d38ac 100644 --- a/editors/psgml/Makefile +++ b/editors/psgml/Makefile @@ -7,7 +7,7 @@ PORTNAME= psgml PORTVERSION= 1.3.2 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= editors elisp MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= psgml diff --git a/editors/psgml/files/patch-ad b/editors/psgml/files/patch-ad index 2a31b3bf480f..1911137bfb06 100644 --- a/editors/psgml/files/patch-ad +++ b/editors/psgml/files/patch-ad @@ -1,6 +1,31 @@ ---- Makefile.in.orig Sun Oct 10 23:12:40 1999 -+++ Makefile.in Sat Oct 16 20:24:14 1999 -@@ -31,6 +31,7 @@ +--- Makefile.in.orig Sun Mar 6 01:23:40 2005 ++++ Makefile.in Sat May 21 18:45:15 2005 +@@ -20,17 +20,29 @@ + SHELL = /bin/sh + + compile: ++ for F in psgml.el psgml.texi; do \ ++ sed -e "s,@[p]refix@,${prefix}," < $$F > $$F.tmp; \ ++ mv $$F.tmp $$F; \ ++ done + $(EMACS) $(FLAGS) -f psgml-compile-files + +-all: +- rm -f *.elc ; $(EMACS) $(FLAGS) -f psgml-compile-files ++info: ++ for p in psgml psgml-api; do \ ++ $(EMACS) -batch -q -no-site-file -l texinfmt \ ++ -f batch-texinfo-format $$p.texi; \ ++ done + ++all: ++ rm -f *.elc ++ ${MAKE} compile ++ ${MAKE} info + +-install: compile ++install: + $(SHELL) mkinstalldirs $(lispdir) for p in *.elc; do \ echo " $(INSTALL_DATA) $$p $(lispdir)/$$p"; \ $(INSTALL_DATA) $$p $(lispdir)/$$p; \ @@ -8,7 +33,7 @@ done $(INSTALL_DATA) iso88591.map $(lispdir) -@@ -42,8 +43,8 @@ +@@ -39,8 +51,8 @@ $(INSTALL_DATA) psgml-api.info $(infodir) if $(SHELL) -c 'install-info --version' \ >/dev/null 2>&1; then \ diff --git a/editors/psgml/scripts/configure b/editors/psgml/scripts/configure deleted file mode 100644 index e69de29bb2d1..000000000000 --- a/editors/psgml/scripts/configure +++ /dev/null |