diff options
author | Steve Price <steve@FreeBSD.org> | 1999-06-09 00:25:42 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-06-09 00:25:42 +0000 |
commit | 0018ea21c0adae70eb43cb78f6bed6b0976311dd (patch) | |
tree | 3823910b21256eed6ce2c8d43b1b03b5c72d5176 /palm/syncal/files | |
parent | Make this port honor CFLAGS. (diff) |
Initial impoirt of syncal version 0.5.
Synchronize your PalmPilot with ical.
PR: 11304
Submitted by: Lars Koeller <lkoeller@cc.fh-lippe.de>
Diffstat (limited to 'palm/syncal/files')
-rw-r--r-- | palm/syncal/files/patch-aa | 69 |
1 files changed, 69 insertions, 0 deletions
diff --git a/palm/syncal/files/patch-aa b/palm/syncal/files/patch-aa new file mode 100644 index 000000000000..af8499e91e1a --- /dev/null +++ b/palm/syncal/files/patch-aa @@ -0,0 +1,69 @@ +*** Makefile.org Fri Apr 9 19:54:00 1999 +--- Makefile Sat Apr 24 13:26:57 1999 +*************** +*** 13,19 **** + # + # top_builddir = /home/john/pilot/src/pilot-link.0.9.1 + # +! top_builddir = . + + ########## + # Pick your C compiler +--- 13,19 ---- + # + # top_builddir = /home/john/pilot/src/pilot-link.0.9.1 + # +! top_builddir = @@PREFIX@@ + + ########## + # Pick your C compiler +*************** +*** 25,31 **** + ########## + # Where should I be installed? + # +! INSTALLTOP = /usr/local + INSTALLBIN = $(INSTALLTOP)/bin + INSTALLMAN = $(INSTALLTOP)/man + +--- 25,31 ---- + ########## + # Where should I be installed? + # +! INSTALLTOP = @@PREFIX@@ + INSTALLBIN = $(INSTALLTOP)/bin + INSTALLMAN = $(INSTALLTOP)/man + +*************** +*** 58,65 **** + # + # Unless you're smarter than me, which is entirely possible. [JTL] + # +! LIBDIR = -L$(top_builddir) +! INCDIR = -I$(top_builddir) + CFLAGS = -Wall $(INCDIR) + SYNCAL_OBJS = syncal.o syncal_list.o syncal_dates.o syncal_reconcile.o + LIBTOOL = $(top_builddir)/libtool +--- 58,65 ---- + # + # Unless you're smarter than me, which is entirely possible. [JTL] + # +! LIBDIR = -L$(top_builddir)/lib +! INCDIR = -I$(top_builddir)/include + CFLAGS = -Wall $(INCDIR) + SYNCAL_OBJS = syncal.o syncal_list.o syncal_dates.o syncal_reconcile.o + LIBTOOL = $(top_builddir)/libtool +*************** +*** 81,86 **** + install: + install -d $(INSTALLBIN) + install -d $(INSTALLMAN)/man1 +! install -s -g root -o root -m 755 syncal $(INSTALLBIN) +! +! install -g root -o root -m 644 syncal.1 $(INSTALLMAN)/man1 +--- 81,85 ---- + install: + install -d $(INSTALLBIN) + install -d $(INSTALLMAN)/man1 +! install -c -s -g bin -o bin -m 755 syncal $(INSTALLBIN) +! install -c -m 644 syncal.1 $(INSTALLMAN)/man1 |