diff options
author | hubertf <hubertf@pkgsrc.org> | 1997-10-11 21:53:59 +0000 |
---|---|---|
committer | hubertf <hubertf@pkgsrc.org> | 1997-10-11 21:53:59 +0000 |
commit | 240eed442d1f97f7d7dd9430673499ef25dd1f36 (patch) | |
tree | cd1e0be6347cb17aeb9201b0ecc45b0286c98b53 /misc/dotfile | |
parent | 652e2956ee0721786181dcf43d7559a17c9b93f9 (diff) | |
download | pkgsrc-240eed442d1f97f7d7dd9430673499ef25dd1f36.tar.gz |
Import as of 09/25/97
Diffstat (limited to 'misc/dotfile')
-rw-r--r-- | misc/dotfile/Makefile | 27 | ||||
-rw-r--r-- | misc/dotfile/files/md5 | 1 | ||||
-rw-r--r-- | misc/dotfile/patches/patch-01 | 68 | ||||
-rw-r--r-- | misc/dotfile/pkg/COMMENT | 1 | ||||
-rw-r--r-- | misc/dotfile/pkg/DESCR | 10 | ||||
-rw-r--r-- | misc/dotfile/pkg/MESSAGE | 3 | ||||
-rw-r--r-- | misc/dotfile/pkg/PLIST | 232 |
7 files changed, 342 insertions, 0 deletions
diff --git a/misc/dotfile/Makefile b/misc/dotfile/Makefile new file mode 100644 index 00000000000..1f12647e933 --- /dev/null +++ b/misc/dotfile/Makefile @@ -0,0 +1,27 @@ +# New ports collection makefile for: dotfile +# Version required: 2.0 +# Date created: 11/12/96 +# Whom: oly@world.std.com +# +# $Id: Makefile,v 1.1.1.1 1997/10/11 21:54:11 hubertf Exp $ +# + +DISTNAME= dotfile-2.0 +CATEGORIES= misc tk41 +MASTER_SITES= ftp://ftp.imada.ou.dk/pub/dotfile/ + +MAINTAINER= oly@world.std.com + +LIB_DEPENDS= tk41\\.1:${PORTSDIR}/x11/tk41 +RUN_DEPENDS= wish4.1:${PORTSDIR}/x11/tk41 + +GNU_CONFIGURE= yes +MAN1= dotfile.1 + +do-build: + @${DO_NADA} + +post-install: + @${CAT} ${PKGDIR}/MESSAGE + +.include <bsd.port.mk> diff --git a/misc/dotfile/files/md5 b/misc/dotfile/files/md5 new file mode 100644 index 00000000000..d51a20bee0e --- /dev/null +++ b/misc/dotfile/files/md5 @@ -0,0 +1 @@ +MD5 (dotfile-2.0.tar.gz) = efe6b64d425b6f6f2ae6f44648b597fd diff --git a/misc/dotfile/patches/patch-01 b/misc/dotfile/patches/patch-01 new file mode 100644 index 00000000000..823c0b29025 --- /dev/null +++ b/misc/dotfile/patches/patch-01 @@ -0,0 +1,68 @@ +--- Makefile.in.orig Fri Jan 31 13:10:25 1997 ++++ Makefile.in Thu Apr 3 19:02:57 1997 +@@ -15,7 +15,7 @@ + bindir = $(exec_prefix)/bin + + # Directory in which to install library files. +-libdir = $(prefix)/lib/dotfile-$(version) ++libdir = $(prefix)/share/dotfile-$(version) + # Directory for the manual page + mandir = $(prefix)/man/man1 + +@@ -23,7 +23,6 @@ + SHELL = /bin/sh + + ### Tell the user that there is nothing to be compiled. +-.PHONY: nothing + nothing: + @echo "The Dotfile Generator does not contain any files which has to be compiled!" + @echo "On the other hand, during installation, all the modules need to be" +@@ -32,10 +31,8 @@ + # + # install all the files in the corect places. + # +-.PHONY: install + install: copydirs bytecompile + +-.PHONY: copydirs + copydirs: + $(SHELL) $(srcdir)/mkinstalldirs $(bindir) $(libdir) \ + $(libdir)/Generator $(mandir) +@@ -49,20 +46,18 @@ + done + cp dotfile.1 $(mandir) + -@RM@ $(bindir)/dotfile +- -@LN@ -s $(bindir)/dotfile-$(version) $(bindir)/dotfile ++ -@LN@ -s dotfile-$(version) $(bindir)/dotfile + chmod 755 $(bindir)/dotfile + chmod 755 $(bindir)/dotfile-$(version) + +-.PHONY: bytecompile + bytecompile: $(MODULES) + + # + # Targets that requre X (the modules using the fonts widget) + # +-.PHONY fvwm1 fvwm2: + fvwm1 fvwm2: +- @if wish testwish; then \ +- @WISH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \ ++ @if $(WISH) testwish; then \ ++ $(WISH) $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile; \ + else \ + echo "An error should be shown above!"; \ + echo "You need X to bytecompile the $@ module, do this manually after"; \ +@@ -72,13 +67,11 @@ + # + # Targets that may bytecompile without X + # +-.PHONY emacs tcsh rtin bash elm: + emacs tcsh rtin bash elm: + @@TCLSH@ $(libdir)/Generator/dotfile.tcl $(libdir)/Generator $(libdir)/$@ bytecompile + + # + # Clean + # +-.PHONY: clean + clean : + @echo Nothing to do diff --git a/misc/dotfile/pkg/COMMENT b/misc/dotfile/pkg/COMMENT new file mode 100644 index 00000000000..aa32605fa33 --- /dev/null +++ b/misc/dotfile/pkg/COMMENT @@ -0,0 +1 @@ +A GUI dotfile generator program to create .config files diff --git a/misc/dotfile/pkg/DESCR b/misc/dotfile/pkg/DESCR new file mode 100644 index 00000000000..c0101b2d484 --- /dev/null +++ b/misc/dotfile/pkg/DESCR @@ -0,0 +1,10 @@ +This is a port of the dotfile generator program. It creates +configuration files for many popular programs. + +The dotfile generator provides a handy way to create user- +configuration files for many programs. Modules are used +to define the configuration options. A sample template is +provided to aid in creating new modules. + +- Oly +oly@world.std.com diff --git a/misc/dotfile/pkg/MESSAGE b/misc/dotfile/pkg/MESSAGE new file mode 100644 index 00000000000..89528ccaff5 --- /dev/null +++ b/misc/dotfile/pkg/MESSAGE @@ -0,0 +1,3 @@ + +Check out dotfile's useful homepage http://www.imada.ou.dk/~blackie/dotfile/ + diff --git a/misc/dotfile/pkg/PLIST b/misc/dotfile/pkg/PLIST new file mode 100644 index 00000000000..eae88eda178 --- /dev/null +++ b/misc/dotfile/pkg/PLIST @@ -0,0 +1,232 @@ +bin/dotfile +bin/dotfile-2.0 +man/man1/dotfile.1.gz +share/dotfile-2.0/Generator/bitmaps/Down +share/dotfile-2.0/Generator/bitmaps/act_folder.xbm +share/dotfile-2.0/Generator/bitmaps/file.xbm +share/dotfile-2.0/Generator/bitmaps/folder.xbm +share/dotfile-2.0/Generator/bitmaps/idx.xbm +share/dotfile-2.0/Generator/bitmaps/scissors.xbm +share/dotfile-2.0/Generator/bitmaps/new.xbm +share/dotfile-2.0/Generator/bitmaps/GeneratorLogo.gif +share/dotfile-2.0/Generator/bitmaps/folder_center.xbm +share/dotfile-2.0/Generator/bitmaps/Left +share/dotfile-2.0/Generator/bitmaps/Right +share/dotfile-2.0/Generator/bitmaps/Up +share/dotfile-2.0/Generator/bitmaps/ComboBox.xbm +share/dotfile-2.0/Generator/oldVersions/1.1/tcsh +share/dotfile-2.0/Generator/oldVersions/1.1/Emacs +share/dotfile-2.0/Generator/oldVersions/1.1/fvwm +share/dotfile-2.0/Generator/oldVersions/1.1/Fvwm +share/dotfile-2.0/Generator/update-from-1.1.tcl +share/dotfile-2.0/Generator/types.tcl +share/dotfile-2.0/Generator/system.tcl.in +share/dotfile-2.0/Generator/system.tcl +share/dotfile-2.0/Generator/setup.tcl +share/dotfile-2.0/Generator/setPages.tcl +share/dotfile-2.0/Generator/save.tcl +share/dotfile-2.0/Generator/parse.tcl +share/dotfile-2.0/Generator/menus.tcl +share/dotfile-2.0/Generator/makeHelp.tcl +share/dotfile-2.0/Generator/makeHelp +share/dotfile-2.0/Generator/mail.tcl +share/dotfile-2.0/Generator/load.tcl +share/dotfile-2.0/Generator/import.tcl +share/dotfile-2.0/Generator/helpfile.data +share/dotfile-2.0/Generator/help.tcl +share/dotfile-2.0/Generator/help.html +share/dotfile-2.0/Generator/generatedHelp +share/dotfile-2.0/Generator/generate.tcl +share/dotfile-2.0/Generator/functions.tcl +share/dotfile-2.0/Generator/TAGS +share/dotfile-2.0/Generator/fillouts.tcl +share/dotfile-2.0/Generator/extOptMenu.tcl +share/dotfile-2.0/Generator/export.tcl +share/dotfile-2.0/Generator/edit.tcl +share/dotfile-2.0/Generator/dotfile.tcl +share/dotfile-2.0/Generator/dialog.tcl +share/dotfile-2.0/Generator/details.tcl +share/dotfile-2.0/Generator/combo.tcl +share/dotfile-2.0/Generator/color.tcl +share/dotfile-2.0/Generator/bytecompile.tcl +share/dotfile-2.0/Generator/browser.tcl +share/dotfile-2.0/Generator/Warranty +share/dotfile-2.0/Generator/versionUpdate.tcl +share/dotfile-2.0/Generator/Copying +share/dotfile-2.0/Generator/util.tcl +share/dotfile-2.0/fvwm2/save-files/distrib.save +share/dotfile-2.0/fvwm2/save-files/imada.save +share/dotfile-2.0/fvwm2/exports/contents +share/dotfile-2.0/fvwm2/exports/distrib.export +share/dotfile-2.0/fvwm2/exports/imada.export +share/dotfile-2.0/fvwm2/style.template +share/dotfile-2.0/fvwm2/paths.template +share/dotfile-2.0/fvwm2/mouse.template +share/dotfile-2.0/fvwm2/miscellaneous.template +share/dotfile-2.0/fvwm2/menus.template +share/dotfile-2.0/fvwm2/main.template +share/dotfile-2.0/fvwm2/keys.template +share/dotfile-2.0/fvwm2/info +share/dotfile-2.0/fvwm2/helpfile.data +share/dotfile-2.0/fvwm2/help.html +share/dotfile-2.0/fvwm2/generatedHelp +share/dotfile-2.0/fvwm2/fvwmrc_convert.in.44 +share/dotfile-2.0/fvwm2/fvwmrc_convert.in +share/dotfile-2.0/fvwm2/fvwmrc_convert +share/dotfile-2.0/fvwm2/fvwm2parser.tcl +share/dotfile-2.0/fvwm2/functions.template +share/dotfile-2.0/fvwm2/font.tcl +share/dotfile-2.0/fvwm2/decor.template +share/dotfile-2.0/fvwm2/colorsfonts.template +share/dotfile-2.0/fvwm2/buttons.template +share/dotfile-2.0/fvwm2/README +share/dotfile-2.0/fvwm2/FvwmWinList.template +share/dotfile-2.0/fvwm2/FvwmTalk.template +share/dotfile-2.0/fvwm2/FvwmScroll.template +share/dotfile-2.0/fvwm2/FvwmPager.template +share/dotfile-2.0/fvwm2/FvwmIdent.template +share/dotfile-2.0/fvwm2/FvwmIconMan.template +share/dotfile-2.0/fvwm2/FvwmIconBox.template +share/dotfile-2.0/fvwm2/FvwmButtons.template +share/dotfile-2.0/fvwm2/FvwmBanner.template +share/dotfile-2.0/fvwm2/FvwmBacker.template +share/dotfile-2.0/fvwm2/FvwmAuto.template +share/dotfile-2.0/fvwm2/virtual.template +share/dotfile-2.0/fvwm2/FvwmAudio.template +share/dotfile-2.0/fvwm2/tools.tcl +share/dotfile-2.0/fvwm2/bytecompile +share/dotfile-2.0/bash/save-files/author-export-1.save +share/dotfile-2.0/bash/save-files/author-export-2.save +share/dotfile-2.0/bash/exports/author-export-1.export +share/dotfile-2.0/bash/exports/author-export-2.export +share/dotfile-2.0/bash/exports/contents +share/dotfile-2.0/bash/sysLimits.template +share/dotfile-2.0/bash/prompting.template +share/dotfile-2.0/bash/promptWidget.template +share/dotfile-2.0/bash/path.template +share/dotfile-2.0/bash/main.template +share/dotfile-2.0/bash/mail.template +share/dotfile-2.0/bash/logo8.gif +share/dotfile-2.0/bash/logo1.gif +share/dotfile-2.0/bash/job.template +share/dotfile-2.0/bash/info +share/dotfile-2.0/bash/helpfile.data +share/dotfile-2.0/bash/help.html +share/dotfile-2.0/bash/generatedHelp +share/dotfile-2.0/bash/fileDir.template +share/dotfile-2.0/bash/errorHandling.template +share/dotfile-2.0/bash/completion.template +share/dotfile-2.0/bash/commLine.template +share/dotfile-2.0/bash/commHist.template +share/dotfile-2.0/bash/bindKey.template +share/dotfile-2.0/bash/alias.template +share/dotfile-2.0/bash/TODO +share/dotfile-2.0/bash/version.template +share/dotfile-2.0/bash/README +share/dotfile-2.0/bash/ttyApp.template +share/dotfile-2.0/bash/bytecompile +share/dotfile-2.0/tcsh/save-files/standard.save +share/dotfile-2.0/tcsh/save-files/complete.save +share/dotfile-2.0/tcsh/exports/contents +share/dotfile-2.0/tcsh/exports/standard.export +share/dotfile-2.0/tcsh/time.template +share/dotfile-2.0/tcsh/promptWidget.template +share/dotfile-2.0/tcsh/prompt.template +share/dotfile-2.0/tcsh/path.template +share/dotfile-2.0/tcsh/misc.template +share/dotfile-2.0/tcsh/main.template +share/dotfile-2.0/tcsh/logout.template +share/dotfile-2.0/tcsh/limit.template +share/dotfile-2.0/tcsh/jobs.template +share/dotfile-2.0/tcsh/info +share/dotfile-2.0/tcsh/history.template +share/dotfile-2.0/tcsh/helpfile.data +share/dotfile-2.0/tcsh/help.html +share/dotfile-2.0/tcsh/generatedHelp +share/dotfile-2.0/tcsh/files.template +share/dotfile-2.0/tcsh/editor.template +share/dotfile-2.0/tcsh/dirs.template +share/dotfile-2.0/tcsh/completion_user.template +share/dotfile-2.0/tcsh/completion_misc.template +share/dotfile-2.0/tcsh/bindings.template +share/dotfile-2.0/tcsh/alias.template +share/dotfile-2.0/tcsh/addset.template +share/dotfile-2.0/tcsh/watch.template +share/dotfile-2.0/tcsh/TAGS +share/dotfile-2.0/tcsh/util.tcl +share/dotfile-2.0/tcsh/bytecompile +share/dotfile-2.0/emacs/local/local.template +share/dotfile-2.0/emacs/save-files/Emacs.save +share/dotfile-2.0/emacs/exports/Emacs.export +share/dotfile-2.0/emacs/exports/contents +share/dotfile-2.0/emacs/saving.template +share/dotfile-2.0/emacs/python.template +share/dotfile-2.0/emacs/outline-mode.template +share/dotfile-2.0/emacs/modes-general.template +share/dotfile-2.0/emacs/misc.template +share/dotfile-2.0/emacs/main.template +share/dotfile-2.0/emacs/info +share/dotfile-2.0/emacs/html-helper-mode.template +share/dotfile-2.0/emacs/hilit-mode.template +share/dotfile-2.0/emacs/helpfile.data +share/dotfile-2.0/emacs/helper.template +share/dotfile-2.0/emacs/help.html +share/dotfile-2.0/emacs/generatedHelp +share/dotfile-2.0/emacs/comint-mode.template +share/dotfile-2.0/emacs/c-mode.template +share/dotfile-2.0/emacs/abbrev.template +share/dotfile-2.0/emacs/TAGS +share/dotfile-2.0/emacs/HELP +share/dotfile-2.0/emacs/util.tcl +share/dotfile-2.0/emacs/ChangeLog +share/dotfile-2.0/emacs/terminal.template +share/dotfile-2.0/emacs/tcl-mode.template +share/dotfile-2.0/emacs/bytecompile +share/dotfile-2.0/rtin/save-files/rtin.save +share/dotfile-2.0/rtin/exports/contents +share/dotfile-2.0/rtin/exports/rtin.export +share/dotfile-2.0/rtin/helpfile.data +share/dotfile-2.0/rtin/main.template +share/dotfile-2.0/rtin/info +share/dotfile-2.0/rtin/rtin-mod.template +share/dotfile-2.0/rtin/help.html +share/dotfile-2.0/rtin/generatedHelp +share/dotfile-2.0/rtin/rtinparser.tcl +share/dotfile-2.0/rtin/bytecompile +share/dotfile-2.0/elm/README +share/dotfile-2.0/elm/viewingcharset.template +share/dotfile-2.0/elm/viewer.template +share/dotfile-2.0/elm/version.template +share/dotfile-2.0/elm/textencoding.template +share/dotfile-2.0/elm/signature.template +share/dotfile-2.0/elm/quoting.template +share/dotfile-2.0/elm/optionmenu.template +share/dotfile-2.0/elm/navigation.template +share/dotfile-2.0/elm/main.template +share/dotfile-2.0/elm/layout.template +share/dotfile-2.0/elm/info +share/dotfile-2.0/elm/generel.template +share/dotfile-2.0/elm/folderdecision.template +share/dotfile-2.0/elm/foldercommunication.template +share/dotfile-2.0/elm/elmrc +share/dotfile-2.0/elm/elm-parser.tcl +share/dotfile-2.0/elm/editor.template +share/dotfile-2.0/elm/editingheaders.template +share/dotfile-2.0/elm/behavior.template +share/dotfile-2.0/elm/aliasmenu.template +share/dotfile-2.0/elm/viewingheaders.template +share/dotfile-2.0/elm/bytecompile +share/dotfile-2.0/fvwm1/save-files/system.save +share/dotfile-2.0/fvwm1/exports/contents +share/dotfile-2.0/fvwm1/exports/system.export +share/dotfile-2.0/fvwm1/paths.template +share/dotfile-2.0/fvwm1/modes.template +share/dotfile-2.0/fvwm1/menus.template +share/dotfile-2.0/fvwm1/main.template +share/dotfile-2.0/fvwm1/info +share/dotfile-2.0/fvwm1/fonts.template +share/dotfile-2.0/fvwm1/colors.template +share/dotfile-2.0/fvwm1/tools.tcl +share/dotfile-2.0/fvwm1/README +share/dotfile-2.0/fvwm1/ressources.template +share/dotfile-2.0/fvwm1/bytecompile |