mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
18666fbe54
service of the Deutsche Telekom. XCept 2 is freeware (BSD-style copyright), but has later been replaced by the commercial XCept 3. The authors no longer distribute or support this old version. I cannot build it on freefall's 2.1.x system, but it builds fine on my 2.2-current. thud seems to be down...
18 lines
487 B
Plaintext
18 lines
487 B
Plaintext
--- /dev/null Sun Sep 1 12:14:31 1996
|
|
+++ lib/Makefile Sun Sep 1 14:33:06 1996
|
|
@@ -0,0 +1,14 @@
|
|
+#
|
|
+# Makefile for scripts
|
|
+# essentially the install command
|
|
+SCRIPTS = ascii.xcept Bundesbahn.xcept DeutscheBank-Kontoauszug.xcept \
|
|
+ on-off.xcept popup.xcept Sparkasse.xcept \
|
|
+ ZDF.xcept client-mode xcept.pl ZDF.pl
|
|
+DEST = /usr/local/lib/xcept
|
|
+
|
|
+all:
|
|
+
|
|
+install:
|
|
+ mkdir -p $(DEST)
|
|
+ install -c -m 0664 $(SCRIPTS) $(DEST)
|
|
+ chmod 755 $(DEST)/ZDF.pl $(DEST)/xcept.pl
|