Skip to content
This repository has been archived by the owner on Oct 19, 2021. It is now read-only.

Commit

Permalink
Remove old references to easysw.com domain and copyright. Point to me…
Browse files Browse the repository at this point in the history
… and

Github...
  • Loading branch information
michaelrsweet committed Oct 11, 2017
1 parent d9cde9a commit 428565f
Show file tree
Hide file tree
Showing 8 changed files with 29 additions and 25 deletions.
12 changes: 7 additions & 5 deletions doc/Makefile.in
Original file line number Diff line number Diff line change
Expand Up @@ -44,19 +44,21 @@ HTMLFILES = title.html preface.html 1-intro.html 2-building.html \
3-packaging.html 4-advanced.html 5-examples.html \
a-license.html b-manpages.html c-reference.html \
$(MANPAGES)
BOOKS = epm-book.epub epm-book.html epm-book.pdf

all: $(MANPAGES) epm-book.epub epm-book.html epm-book.pdf

all: $(MANPAGES) $(BOOKS)

clean:
$(RM) epm-book.html $(MANPAGES) mantohtml mantohtml.o
$(RM) $(BOOKS) $(MANPAGES) mantohtml mantohtml.o

epm-book.epub: $(HTMLFILES) setup.png title.png epm-book.book
epm-book.epub: $(HTMLFILES) epm-256.png setup.png title.png epm-book.book
$(HTMLDOC) --batch epm-book.book --titleimage title.png -f epm-book.epub

epm-book.html: $(HTMLFILES) setup.png epm-book.book
epm-book.html: $(HTMLFILES) epm-256.png setup.png epm-book.book
$(HTMLDOC) --batch epm-book.book -f epm-book.html

epm-book.pdf: $(HTMLFILES) setup.png epm-book.book
epm-book.pdf: $(HTMLFILES) epm-256.png setup.png epm-book.book
$(HTMLDOC) --batch epm-book.book --size universal -f epm-book.pdf

mantohtml: mantohtml.o
Expand Down
Binary file added doc/epm-256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 12 additions & 12 deletions doc/epm-book.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
<META NAME="copyright" CONTENT="Copyright 1999-2017 by Michael R Sweet">
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; CHARSET=iso-8859-1">
<STYLE TYPE="text/css"><!--
BODY { font-family: sans-serif }
H1 { font-family: sans-serif }
H2 { font-family: sans-serif }
H3 { font-family: sans-serif }
H4 { font-family: sans-serif }
H5 { font-family: sans-serif }
H6 { font-family: sans-serif }
SUB { font-size: smaller }
SUP { font-size: smaller }
PRE { font-family: monospace }
A { text-decoration: none }
BODY { font-family: sans-serif; }
H1 { font-family: sans-serif; }
H2 { font-family: sans-serif; }
H3 { font-family: sans-serif; }
H4 { font-family: sans-serif; }
H5 { font-family: sans-serif; }
H6 { font-family: sans-serif; }
SUB { font-size: smaller; }
SUP { font-size: smaller; }
PRE { font-family: monospace; margin-left: 36pt; }
A { text-decoration: none; }
--></STYLE>
</HEAD>
<BODY>
Expand All @@ -29,7 +29,7 @@
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p ALIGN="CENTER"><img ALT="EPM" HEIGHT="128" SRC="../default-256.png" WIDTH="128">
<p ALIGN="CENTER"><img ALT="EPM" HEIGHT="128" SRC="epm-256.png" WIDTH="128">
</p>
<h1 ALIGN="CENTER">Software Distribution
<br> with
Expand Down
2 changes: 1 addition & 1 deletion doc/title.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

<P>&nbsp;</P>

<P ALIGN="CENTER"><IMG SRC="../default-256.png" WIDTH="128" HEIGHT="128" ALT="EPM"></P>
<P ALIGN="CENTER"><IMG SRC="epm-256.png" WIDTH="128" HEIGHT="128" ALT="EPM"></P>

<H1 ALIGN="CENTER">Software Distribution<br>
with<br>
Expand Down
3 changes: 2 additions & 1 deletion epm.c
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,8 @@ info(void)
puts("");
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details");
puts("see the GNU General Public License in the file COPYING or at");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"epm@easysw.com\".");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to");
puts("\"https://github.com/michaelrsweet/epm/issues\".");
puts("");
}

Expand Down
5 changes: 3 additions & 2 deletions epminstall.c
Original file line number Diff line number Diff line change
Expand Up @@ -369,11 +369,12 @@ static void
info(void)
{
puts(EPM_VERSION);
puts("Copyright 1999-2005 by Easy Software Products.");
puts("Copyright 1999-2017 by Michael R Sweet.");
puts("");
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details");
puts("see the GNU General Public License in the file COPYING or at");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"epm@easysw.com\".");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to");
puts("\"https://github.com/michaelrsweet/epm/issues\".");
puts("");
}

Expand Down
5 changes: 3 additions & 2 deletions mkepmlist.c
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,12 @@ void
info(void)
{
puts(EPM_VERSION);
puts("Copyright 1999-2005 by Easy Software Products.");
puts("Copyright 1999-2017 by Michael R Sweet.");
puts("");
puts("EPM is free software and comes with ABSOLUTELY NO WARRANTY; for details");
puts("see the GNU General Public License in the file COPYING or at");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to \"epm@easysw.com\".");
puts("\"http://www.fsf.org/gpl.html\". Report all problems to");
puts("\"https://github.com/michaelrsweet/epm/issues\".");
puts("");
}

Expand Down
3 changes: 1 addition & 2 deletions portable.c
Original file line number Diff line number Diff line change
Expand Up @@ -905,8 +905,7 @@ write_common(dist_t *dist, /* I - Distribution */
fputs("#!/bin/sh\n", fp);
fprintf(fp, "# %s script for %s version %s.\n", title,
dist->product, dist->version);
fputs("# Produced using " EPM_VERSION "; report problems to epm@easysw.com.\n",
fp);
fputs("# Produced using " EPM_VERSION " (https://michaelrsweet.github.io/epm).\n", fp);
fprintf(fp, "#%%product %s", dist->product);
if (subpackage)
{
Expand Down

0 comments on commit 428565f

Please sign in to comment.