diff options
author | vs <vs@FreeBSD.org> | 2004-06-16 19:24:28 +0800 |
---|---|---|
committer | vs <vs@FreeBSD.org> | 2004-06-16 19:24:28 +0800 |
commit | 705f42b36d8c0a25a22b8474c0bc48951f8a11ec (patch) | |
tree | 917a1cad955c6706753c42766db616707e09bad4 /devel/ecb | |
parent | c9948eb95210279c4d4496c747b678249f23ca6c (diff) | |
download | freebsd-ports-gnome-705f42b36d8c0a25a22b8474c0bc48951f8a11ec.tar.gz freebsd-ports-gnome-705f42b36d8c0a25a22b8474c0bc48951f8a11ec.tar.zst freebsd-ports-gnome-705f42b36d8c0a25a22b8474c0bc48951f8a11ec.zip |
- Better INFO-handling w/o pkg-install
- Fix speling while here
Approved by: maintainer
Diffstat (limited to 'devel/ecb')
-rw-r--r-- | devel/ecb/Makefile | 5 | ||||
-rw-r--r-- | devel/ecb/pkg-install | 6 |
2 files changed, 3 insertions, 8 deletions
diff --git a/devel/ecb/Makefile b/devel/ecb/Makefile index eb583b43d9f5..9515590d347a 100644 --- a/devel/ecb/Makefile +++ b/devel/ecb/Makefile @@ -57,7 +57,7 @@ pre-everything:: @${ECHO_MSG} "" @${ECHO_MSG} " WITHOUT_ICONS=yes Don't install ecb's icons" @${ECHO_MSG} "" - @${ECHO_MSG} " WITHOUT_CEDET=yes Don't use theCEDET library," + @${ECHO_MSG} " WITHOUT_CEDET=yes Don't use the CEDET library," @${ECHO_MSG} " use the old version of " @${ECHO_MSG} " eieio/semantic/speedbar instead." @${ECHO_MSG} "" @@ -65,6 +65,7 @@ pre-everything:: post-patch: ${REINPLACE_CMD} "s|\./info-help|${PREFIX}/info|" ${WRKSRC}/ecb-help.el + ${REINPLACE_CMD} "s/^\(@dircategory \)GNU Emacs Lisp/\1The Emacs editor and associated tools/" ${WRKSRC}/ecb.texi post-build: cd ${WRKSRC} && makeinfo --no-split ecb.texi @@ -97,6 +98,6 @@ do-install: .endif post-install: - ${SETENV} PKG_PREFIX="${PREFIX}" ${SH} ${PKGINSTALL} ${PKGNAME} POST-INSTALL + install-info --dir ${PREFIX}/info/dir ${PREFIX}/info/ecb.info .include <bsd.port.mk> diff --git a/devel/ecb/pkg-install b/devel/ecb/pkg-install deleted file mode 100644 index 2f16be2437fa..000000000000 --- a/devel/ecb/pkg-install +++ /dev/null @@ -1,6 +0,0 @@ -#!/bin/sh - -if [ X$2 = XPOST-INSTALL ]; then - install-info --section="The Emacs editor and associated tools" \ - ${PKG_PREFIX}/info/ecb.info ${PKG_PREFIX}/info/dir -fi |