Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 16 Mar 2022 12:36:58 +0100
From:      Axel Rau <Axel.Rau@chaos1.de>
To:        Dan Mahoney <freebsd@gushi.org>
Cc:        ports@FreeBSD.org
Subject:   Re: porting Makefiles from Linux
Message-ID:  <3E5853D5-56E2-41B6-8E17-325364EF2D84@Chaos1.DE>
In-Reply-To: <474C8EA9-9BBA-4319-AF30-73394EAB4AE9@gushi.org>
References:  <7453893C-18B0-4298-9228-BC27AFCAE9E7@Chaos1.DE> <474C8EA9-9BBA-4319-AF30-73394EAB4AE9@gushi.org>

next in thread | previous in thread | raw e-mail | index | archive | help
--Apple-Mail=_C207219C-468E-494C-8CE2-0B660EB4F075
Content-Transfer-Encoding: quoted-printable
Content-Type: text/plain; charset=utf-8

Hi Dan,

> Am 16.03.2022 um 00:15 schrieb Dan Mahoney <freebsd@gushi.org>:
>=20
>=20
>=20
>> On Mar 15, 2022, at 3:48 PM, Axel Rau <Axel.Rau@chaos1.de> wrote:
>>=20
>> Hi all,
>>=20
>> are there any tools available to convert install statements in =
Makefiles from Linux to FreeBSD?
>> The install utilities have different options and I=E2=80=99m looking =
for a tool to convert.
>=20
> This is the idea behind autoconf, that it detects the various options =
in play and then builds you a makefile from a file like Makefile.am
>=20
> Could you give some sort of example about what install utilities =
you're referencing, and a package that fails to do the above?  It would =
help explain what it is you're trying to do.

I try to create a port from:
	https://github.com/gkiefer/home2l <https://github.com/gkiefer/home2l>;
This is a multi architecture project and has no configure.in or Makefile.=
am
Makefiles seem to be handcrafted  by the author or otherwise generated.

=E2=80=9Ainstall' statements in Makefiles:
- - -
brownies/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/share/brownies=
 $(BUILD_DIR_AVR)/*.elf
brownies/Makefile:	install -Dp $(STRIP) -m 755 -t $$BIN $(BROWNIE2L_BIN)
doc/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/ home2l-book.pd=
f
doc/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_c/ =
$(API_C)/*.*
doc/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_c/se=
arch/ $(API_C)/search/*.*
doc/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_pyth=
on/ $(API_PYTHON)/*.*
doc/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_pyth=
on/search/ $(API_PYTHON)/search/*.*
doorman/Makefile:	install -Dp $(STRIP) -m 755 -t $$BIN $(DOORMAN_BIN);   =
\
drivers/mqtt/Makefile:	install -Dp $(STRIP) -m 644 -t $(HOME2L_INSTALL)/l=
ib/$(ARCH) $(DRIVER_BIN)
drivers/brownies/Makefile:	install -Dp $(STRIP) -m 644 -t $(HOME2L_INSTAL=
L)/lib/$(ARCH) $(DRIVER_BIN)
drivers/enocean/Makefile:	install -Dp $(STRIP) -m 644 -t $$LIB $(DRIVER_B=
IN); \
drivers/enocean/Makefile:	install -Dp $(STRIP) -m 755 -t $$BIN $(TOOL_BIN=
)
drivers/demo/Makefile:	install -Dp $(STRIP) -m 644 -t $(HOME2L_INSTALL)/l=
ib/$(ARCH) $(DRIVER_BIN)
drivers/mpd/Makefile:	install -Dp $(STRIP) -m 644 -t $(HOME2L_INSTALL)/li=
b/$(ARCH) $(DRIVER_BIN)
drivers/weather/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/lib =
$(SCRIPTS)
drivers/gpio/Makefile:	install -Dp $(STRIP) -m 644 -t $(HOME2L_INSTALL)/l=
ib/$(ARCH) $(DRIVER_BIN)
drivers/gpio/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin =
h2l-setup_gpio.sh
locales/Makefile:	install -Dp -m 644 de.mo $(HOME2L_INSTALL)/locale/de_DE=
/LC_MESSAGES/home2l.mo
resources/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin home2l-sh=
owhouse
resources/Makefile:	install -Dp $(STRIP) -m 755 -t $$BIN $(RCSHELL_BIN) =
$(SERVER_BIN); \
resources/Makefile:	  install -Dp $(STRIP) -m 644 -t $$LIB $(PYLIB_BIN); =
 \
resources/Makefile:	  install -Dp          -m 644 -t $$LIB $(DIR_OBJ)/$(P=
YLIB).py;  \
tools/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin $(SCRIPTS)
tools/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL) env.sh README
tools/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/install $(INITD)
tools/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin h2l-mkdir.sh
tools/Makefile:	install -Dp $(STRIP) -m 755 -t $$BIN $(DAEMON_BIN);   \
wallclock/Makefile:	install -Dps -m 755 -t $$BIN $(WALLCLOCK_BIN);
wallclock/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin home2l-fp=
c; \
wallclock/Makefile:	install -Dp -m 755 -t $(HOME2L_INSTALL)/bin h2l-sysin=
fo.sh; \
wallclock/Makefile:	  install -Dp -m 644 $(APK) $(HOME2L_INSTALL)/install=
/Home2lApp.apk; \
wallclock/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/share/icons =
icons.build/*.bmp; \
wallclock/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/share/fonts =
fonts/*.ttf; \
wallclock/Makefile:	install -Dp -m 644 -t $(HOME2L_INSTALL)/share/sounds =
sounds/*.wav; \
wallclock/Makefile:	install -Dp -m 644 -T icons/home2l-desktop.png =
$(HOME2L_INSTALL)/share/home2l.png; \
- - -

Thanks, Axel
=2D--
PGP-Key: CDE74120  =E2=98=80  computing @ chaos claudius


--Apple-Mail=_C207219C-468E-494C-8CE2-0B660EB4F075
Content-Transfer-Encoding: quoted-printable
Content-Type: text/html; charset=utf-8

<html><head><meta http-equiv=3D"Content-Type" content=3D"text/html; =
charset=3Dutf-8"></head><body style=3D"word-wrap: break-word; -webkit-nbs=
p-mode: space; line-break: after-white-space;" class=3D"">Hi Dan,<br =
class=3D""><div><br class=3D""><blockquote type=3D"cite" class=3D""><div =
class=3D"">Am 16.03.2022 um 00:15 schrieb Dan Mahoney &lt;<a href=3D"mail=
to:freebsd@gushi.org" class=3D"">freebsd@gushi.org</a>&gt;:</div><br =
class=3D"Apple-interchange-newline"><div class=3D""><div class=3D""><br =
class=3D""><br class=3D""><blockquote type=3D"cite" class=3D"">On Mar =
15, 2022, at 3:48 PM, Axel Rau &lt;<a href=3D"mailto:Axel.Rau@chaos1.de" =
class=3D"">Axel.Rau@chaos1.de</a>&gt; wrote:<br class=3D""><br class=3D""=
>Hi all,<br class=3D""><br class=3D"">are there any tools available to =
convert install statements in Makefiles from Linux to FreeBSD?<br =
class=3D"">The install utilities have different options and I=E2=80=99m =
looking for a tool to convert.<br class=3D""></blockquote><br class=3D"">=
This is the idea behind autoconf, that it detects the various options in =
play and then builds you a makefile from a file like Makefile.am<br =
class=3D""><br class=3D"">Could you give some sort of example about what =
install utilities you're referencing, and a package that fails to do the =
above? &nbsp;It would help explain what it is you're trying to do.<br =
class=3D""></div></div></blockquote><br class=3D""></div><div>I try to =
create a port from:</div><div><span class=3D"Apple-tab-span" style=3D"whi=
te-space:pre">	</span><a href=3D"https://github.com/gkiefer/home2l" =
class=3D"">https://github.com/gkiefer/home2l</a></div><div>This is a =
multi architecture project and has no <a href=3D"http://configure.in" =
class=3D"">configure.in</a> or Makefile.am</div>Makefiles seem to be =
handcrafted&nbsp;&nbsp;by the author&nbsp;or otherwise generated.<div =
class=3D""><br class=3D""></div><div class=3D"">=E2=80=9Ainstall' =
statements in Makefiles:</div><div class=3D"">- - -</div><div class=3D"">=
<div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D""><span style=3D"font-variant-ligatures: no-common-l=
igatures" class=3D"">brownies/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space:pre">	</span>install -Dp -m 644 -t $(HOME2L_INSTALL)=
/share/brownies $(BUILD_DIR_AVR)/*.elf</span></div><div style=3D"margin: =
0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D""><s=
pan style=3D"font-variant-ligatures: no-common-ligatures" class=3D"">brow=
nies/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space:pre">	<=
/span>install -Dp $(STRIP) -m 755 -t $$BIN $(BROWNIE2L_BIN)</span></div><=
div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D"">doc/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space: pre;">	</span>install -Dp -m 644 -t $(HOME2L_INSTAL=
L)/doc/ home2l-book.pdf</div><div style=3D"margin: 0px; font-stretch: =
normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">doc/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install -Dp =
-m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_c/ $(API_C)/*.*</span></div><d=
iv style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-heig=
ht: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">doc/Makefile:<span class=3D"Apple-tab-span" style=3D"white-spa=
ce:pre">	</span>install -Dp -m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_c/=
search/ $(API_C)/search/*.*</span></div><div style=3D"margin: 0px; =
font-stretch: normal; font-size: 11px; line-height: normal; font-family: =
Monaco; background-color: rgb(255, 255, 255);" class=3D""><span style=3D"=
font-variant-ligatures: no-common-ligatures" class=3D"">doc/Makefile:<spa=
n class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install -Dp =
-m 644 -t $(HOME2L_INSTALL)/doc/home2l-api_python/ $(API_PYTHON)/*.*</spa=
n></div><div style=3D"margin: 0px; font-stretch: normal; font-size: =
11px; line-height: normal; font-family: Monaco; background-color: =
rgb(255, 255, 255);" class=3D""><span style=3D"font-variant-ligatures: =
no-common-ligatures" class=3D"">doc/Makefile:<span class=3D"Apple-tab-spa=
n" style=3D"white-space:pre">	</span>install -Dp -m 644 -t $(HOME2L_INSTA=
LL)/doc/home2l-api_python/search/ $(API_PYTHON)/search/*.*</span></div><d=
iv style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-heig=
ht: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">doorman/Makefile:<span class=3D"Apple-tab-span" style=3D"white=
-space:pre">	</span>install -Dp $(STRIP) -m 755 -t $$BIN $(DOORMAN_BIN); =
&nbsp; \</span></div><div style=3D"margin: 0px; font-stretch: normal; =
font-size: 11px; line-height: normal; font-family: Monaco; background-col=
or: rgb(255, 255, 255);" class=3D""><span style=3D"font-variant-ligatures=
: no-common-ligatures" class=3D"">drivers/mqtt/Makefile:<span class=3D"Ap=
ple-tab-span" style=3D"white-space:pre">	</span>install -Dp $(STRIP) -m =
644 -t $(HOME2L_INSTALL)/lib/$(ARCH) $(DRIVER_BIN)</span></div><div =
style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height:=
 normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">drivers/brownies/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space:pre">	</span>install -Dp $(STRIP) -m 644 -t =
$(HOME2L_INSTALL)/lib/$(ARCH) $(DRIVER_BIN)</span></div><div style=3D"mar=
gin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D""><s=
pan style=3D"font-variant-ligatures: no-common-ligatures" class=3D"">driv=
ers/enocean/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space:=
pre">	</span>install -Dp $(STRIP) -m 644 -t $$LIB $(DRIVER_BIN); =
\</span></div><div style=3D"margin: 0px; font-stretch: normal; font-size:=
 11px; line-height: normal; font-family: Monaco; background-color: =
rgb(255, 255, 255);" class=3D""><span style=3D"font-variant-ligatures: =
no-common-ligatures" class=3D"">drivers/enocean/Makefile:<span class=3D"A=
pple-tab-span" style=3D"white-space:pre">	</span>install -Dp $(STRIP) -m =
755 -t $$BIN $(TOOL_BIN)</span></div><div style=3D"margin: 0px; font-stre=
tch: normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">drivers/demo/Makefile:<sp=
an class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install =
-Dp $(STRIP) -m 644 -t $(HOME2L_INSTALL)/lib/$(ARCH) $(DRIVER_BIN)</span>=
</div><div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D""><span style=3D"font-variant-ligatures: no-common-l=
igatures" class=3D"">drivers/mpd/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space:pre">	</span>install -Dp $(STRIP) -m 644 -t =
$(HOME2L_INSTALL)/lib/$(ARCH) $(DRIVER_BIN)</span></div><div style=3D"mar=
gin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D""><s=
pan style=3D"font-variant-ligatures: no-common-ligatures" class=3D"">driv=
ers/weather/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space:=
pre">	</span>install -Dp -m 755 -t $(HOME2L_INSTALL)/lib $(SCRIPTS)</span=
></div><div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D""><span style=3D"font-variant-ligatures: no-common-l=
igatures" class=3D"">drivers/gpio/Makefile:<span class=3D"Apple-tab-span"=
 style=3D"white-space:pre">	</span>install -Dp $(STRIP) -m 644 -t =
$(HOME2L_INSTALL)/lib/$(ARCH) $(DRIVER_BIN)</span></div><div style=3D"mar=
gin: 0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D""><s=
pan style=3D"font-variant-ligatures: no-common-ligatures" class=3D"">driv=
ers/gpio/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space:pre=
">	</span>install -Dp -m 755 -t $(HOME2L_INSTALL)/bin h2l-setup_gpio.sh</=
span></div><div style=3D"margin: 0px; font-stretch: normal; font-size: =
11px; line-height: normal; font-family: Monaco; background-color: =
rgb(255, 255, 255);" class=3D""><span style=3D"font-variant-ligatures: =
no-common-ligatures" class=3D"">locales/Makefile:<span class=3D"Apple-tab=
-span" style=3D"white-space:pre">	</span>install -Dp -m 644 de.mo =
$(HOME2L_INSTALL)/locale/de_DE/LC_MESSAGES/home2l.mo</span></div><div =
style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height:=
 normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">resources/Makefile:<span class=3D"Apple-tab-span" style=3D"whi=
te-space:pre">	</span>install -Dp -m 755 -t $(HOME2L_INSTALL)/bin =
home2l-showhouse</span></div><div style=3D"margin: 0px; font-stretch: =
normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">resources/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install -Dp =
$(STRIP) -m 755 -t $$BIN $(RCSHELL_BIN) $(SERVER_BIN); \</span></div><div=
 style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height=
: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">resources/Makefile:<span class=3D"Apple-tab-span" style=3D"whi=
te-space:pre">	</span>&nbsp; install -Dp $(STRIP) -m 644 -t $$LIB =
$(PYLIB_BIN);&nbsp; \</span></div><div style=3D"margin: 0px; font-stretch=
: normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">resources/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>&nbsp; =
install -Dp&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; -m 644 -t $$LIB $(DIR_OBJ)/=
$(PYLIB).py;&nbsp; \</span></div><div style=3D"margin: 0px; font-stretch:=
 normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D"">tools/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space: pre;">	</span>install -Dp =
-m 755 -t $(HOME2L_INSTALL)/bin $(SCRIPTS)</div><div style=3D"margin: =
0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D""><s=
pan style=3D"font-variant-ligatures: no-common-ligatures" class=3D"">tool=
s/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space:pre">	</sp=
an>install -Dp -m 644 -t $(HOME2L_INSTALL) env.sh README</span></div><div=
 style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height=
: normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">tools/Makefile:<span class=3D"Apple-tab-span" style=3D"white-s=
pace:pre">	</span>install -Dp -m 755 -t $(HOME2L_INSTALL)/install =
$(INITD)</span></div><div style=3D"margin: 0px; font-stretch: normal; =
font-size: 11px; line-height: normal; font-family: Monaco; background-col=
or: rgb(255, 255, 255);" class=3D""><span style=3D"font-variant-ligatures=
: no-common-ligatures" class=3D"">tools/Makefile:<span class=3D"Apple-tab=
-span" style=3D"white-space:pre">	</span>install -Dp -m 755 -t $(HOME2L_I=
NSTALL)/bin h2l-mkdir.sh</span></div><div style=3D"margin: 0px; font-stre=
tch: normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D"">tools/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space: pre;">	</span>install -Dp =
$(STRIP) -m 755 -t $$BIN $(DAEMON_BIN); &nbsp; \</div><div style=3D"margi=
n: 0px; font-stretch: normal; font-size: 11px; line-height: normal; =
font-family: Monaco; background-color: rgb(255, 255, 255);" class=3D"">wa=
llclock/Makefile:<span class=3D"Apple-tab-span" style=3D"white-space: =
pre;">	</span>install -Dps -m 755 -t $$BIN $(WALLCLOCK_BIN);</div><div =
style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height:=
 normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">wallclock/Makefile:<span class=3D"Apple-tab-span" style=3D"whi=
te-space:pre">	</span>install -Dp -m 755 -t $(HOME2L_INSTALL)/bin =
home2l-fpc; \</span></div><div style=3D"margin: 0px; font-stretch: =
normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">wallclock/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install -Dp =
-m 755 -t $(HOME2L_INSTALL)/bin h2l-sysinfo.sh; \</span></div><div =
style=3D"margin: 0px; font-stretch: normal; font-size: 11px; line-height:=
 normal; font-family: Monaco; background-color: rgb(255, 255, 255);" =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">wallclock/Makefile:<span class=3D"Apple-tab-span" style=3D"whi=
te-space:pre">	</span>&nbsp; install -Dp -m 644 $(APK) $(HOME2L_INSTALL)/=
install/Home2lApp.apk; \</span></div><div style=3D"margin: 0px; font-stre=
tch: normal; font-size: 11px; line-height: normal; font-family: Monaco; =
background-color: rgb(255, 255, 255);" class=3D""><span style=3D"font-var=
iant-ligatures: no-common-ligatures" class=3D"">wallclock/Makefile:<span =
class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>install -Dp =
-m 644 -t $(HOME2L_INSTALL)/share/icons icons.build/*.bmp; \</span></div>=
<div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D""><span style=3D"font-variant-ligatures: no-common-l=
igatures" class=3D"">wallclock/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space:pre">	</span>install -Dp -m 644 -t $(HOME2L_INSTALL)=
/share/fonts fonts/*.ttf; \</span></div><div style=3D"margin: 0px; =
font-stretch: normal; font-size: 11px; line-height: normal; font-family: =
Monaco; background-color: rgb(255, 255, 255);" class=3D""><span style=3D"=
font-variant-ligatures: no-common-ligatures" class=3D"">wallclock/Makefil=
e:<span class=3D"Apple-tab-span" style=3D"white-space:pre">	</span>instal=
l -Dp -m 644 -t $(HOME2L_INSTALL)/share/sounds sounds/*.wav; \</span></di=
v><div style=3D"margin: 0px; font-stretch: normal; font-size: 11px; =
line-height: normal; font-family: Monaco; background-color: rgb(255, =
255, 255);" class=3D""><span style=3D"font-variant-ligatures: no-common-l=
igatures" class=3D"">wallclock/Makefile:<span class=3D"Apple-tab-span" =
style=3D"white-space:pre">	</span>install -Dp -m 644 -T icons/home2l-desk=
top.png $(HOME2L_INSTALL)/share/home2l.png; \</span></div></div><div =
class=3D""><span style=3D"font-variant-ligatures: no-common-ligatures" =
class=3D"">- - -</span></div><div class=3D""><br class=3D""></div><div =
class=3D"">Thanks, Axel</div><div class=3D""><div class=3D"">
<div dir=3D"auto" style=3D"caret-color: rgb(0, 0, 0); color: rgb(0, 0, =
0); letter-spacing: normal; text-align: start; text-indent: 0px; =
text-transform: none; white-space: normal; word-spacing: 0px; -webkit-tex=
t-stroke-width: 0px; text-decoration: none; word-wrap: break-word; =
-webkit-nbsp-mode: space; line-break: after-white-space;" class=3D""><div=
 dir=3D"auto" style=3D"caret-color: rgb(0, 0, 0); color: rgb(0, 0, 0); =
letter-spacing: normal; text-align: start; text-indent: 0px; text-transfo=
rm: none; white-space: normal; word-spacing: 0px; -webkit-text-stroke-wid=
th: 0px; text-decoration: none; word-wrap: break-word; -webkit-nbsp-mode:=
 space; line-break: after-white-space;" class=3D""><div style=3D"color: =
rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: =
0px; text-transform: none; white-space: normal; word-spacing: 0px; =
-webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode:=
 space; line-break: after-white-space;" class=3D""><div style=3D"color: =
rgb(0, 0, 0); letter-spacing: normal; text-align: start; text-indent: =
0px; text-transform: none; white-space: normal; word-spacing: 0px; =
-webkit-text-stroke-width: 0px; word-wrap: break-word; -webkit-nbsp-mode:=
 space; line-break: after-white-space;" class=3D""><div style=3D"color: =
rgb(0, 0, 0); font-family: Helvetica; font-style: normal; font-variant-li=
gatures: normal; font-variant-position: normal; font-variant-caps: =
normal; font-variant-numeric: normal; font-variant-alternates: normal; =
font-variant-east-asian: normal; font-weight: normal; letter-spacing: =
normal; line-height: normal; orphans: 2; text-align: -webkit-auto; =
text-indent: 0px; text-transform: none; white-space: normal; widows: 2; =
word-spacing: 0px; -webkit-text-stroke-width: 0px; word-wrap: break-word;=
 -webkit-nbsp-mode: space; line-break: after-white-space;" class=3D""><di=
v class=3D"">---<br class=3D"">PGP-Key:&nbsp;CDE74120 &nbsp;=E2=98=80 =
&nbsp;computing @ chaos claudius</div></div></div></div></div></div>
</div>
<br class=3D""></div></body></html>

--Apple-Mail=_C207219C-468E-494C-8CE2-0B660EB4F075--



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3E5853D5-56E2-41B6-8E17-325364EF2D84>