diff options
author | jtb <jtb@pkgsrc.org> | 2001-03-02 19:45:57 +0000 |
---|---|---|
committer | jtb <jtb@pkgsrc.org> | 2001-03-02 19:45:57 +0000 |
commit | 4236adbaa351486ef1a5d27b1a72bf1e23f7dd36 (patch) | |
tree | f22fdc223df0e63661fa52e769f08173d9c989a5 /graphics | |
parent | 40d1d759a0620e4acd691cf36032551a38faf86c (diff) | |
download | pkgsrc-4236adbaa351486ef1a5d27b1a72bf1e23f7dd36.tar.gz |
Install app-defaults file as `tcm' rather than `TCM' since that's what
the main program is called. Remove an unnecessary line from the ugly
"configure" script (so-called).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/tcm/Makefile | 4 | ||||
-rw-r--r-- | graphics/tcm/pkg/PLIST | 4 | ||||
-rwxr-xr-x | graphics/tcm/scripts/configure | 1 |
3 files changed, 4 insertions, 5 deletions
diff --git a/graphics/tcm/Makefile b/graphics/tcm/Makefile index 6d75d327a0f..8fd87f02745 100644 --- a/graphics/tcm/Makefile +++ b/graphics/tcm/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2001/02/24 02:11:20 jtb Exp $ +# $NetBSD: Makefile,v 1.3 2001/03/02 19:45:57 jtb Exp $ DISTNAME= tcm-2.01.src PKGNAME= tcm-2.01 @@ -45,7 +45,7 @@ do-install: ${INSTALL_DATA} ${TCM_SRC}/lib/tcm.conf ${PREFIX}/etc ${INSTALL_DATA} ${TCM_SRC}/lib/TCM \ - ${PREFIX}/lib/X11/app-defaults + ${PREFIX}/lib/X11/app-defaults/tcm @for f in ${TCM_SRC}/man/man1/*.1; do \ i="${INSTALL_MAN} $$f ${PREFIX}/man/man1/"; \ ${ECHO} $$i; $$i; \ diff --git a/graphics/tcm/pkg/PLIST b/graphics/tcm/pkg/PLIST index 1aec3959ccb..210185fda17 100644 --- a/graphics/tcm/pkg/PLIST +++ b/graphics/tcm/pkg/PLIST @@ -1,4 +1,4 @@ -@comment $NetBSD: PLIST,v 1.1.1.1 2001/02/24 01:30:04 jtb Exp $ +@comment $NetBSD: PLIST,v 1.2 2001/03/02 19:45:57 jtb Exp $ bin/psf bin/tatd bin/tcm @@ -26,7 +26,7 @@ bin/ttdt bin/ttut bin/tucd etc/tcm.conf -lib/X11/app-defaults/TCM +lib/X11/app-defaults/tcm man/man1/psf.1 man/man1/tatd.1 man/man1/tcm.1 diff --git a/graphics/tcm/scripts/configure b/graphics/tcm/scripts/configure index def6065ff0c..52b47efb6a0 100755 --- a/graphics/tcm/scripts/configure +++ b/graphics/tcm/scripts/configure @@ -8,7 +8,6 @@ for f in `/usr/bin/find $WRKSRC -name Makefile`; do \ -e 's/$(AR)/$(AR) cr/g' \ -e 's/$(MV)/$(MV) -f/g' \ -e 's/$(RM)/$(RM) -fr/g' \ - -e 's/$(YACC) --debug/$(YACC)/g' \ -e 's/$(LIB_DIR)\/libglobal.a/ -lglobal/g' \ < $f > $f.tmp && /bin/mv -f $f.tmp $f; \ done |