blob: 1f3e803b117bdc921d28873832941edf648eddd3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- Makefile.orig Fri Nov 3 00:35:33 2006
+++ Makefile Fri Nov 3 00:36:25 2006
@@ -57,7 +57,7 @@
endif
ICON_DIR ?= $(PREFIX)/share/pixmaps/$(TARGET)/
LOCALE_DIR ?= $(PREFIX)/share/locale/
-MAN_DIR ?= $(PREFIX)/share/man/man1/
+MAN_DIR ?= $(PREFIX)/man/man1/
OBJECTS_DIR = objs
# object directories that have to be created
@@ -147,10 +147,10 @@
ifeq ($(USE_FAM),1)
lLIBS += -lfam
endif
-ifeq ($(OPSY),FreeBSD)
- OSREL = $(shell sysctl -n kern.osreldate)
- lLIBS += $(shell if test $(OSREL) -lt 500041 ; then echo "-lgnugetopt"; fi)
-endif
+#ifeq ($(OPSY),FreeBSD)
+# OSREL = $(shell sysctl -n kern.osreldate)
+# lLIBS += $(shell if test $(OSREL) -lt 500041 ; then echo "-lgnugetopt"; fi)
+#endif
.PHONY: all plugins install install_plugins uninstall uninstall_plugins doc \
clean deps marshals gettext i18n install_i18n uninstall_i18n \
@@ -175,7 +175,6 @@
done
@install -d $(MAN_DIR)
@install -m 644 docs/$(TARGET).1 $(MAN_DIR);
- @bzip2 -f $(MAN_DIR)$(TARGET).1;
ifeq ($(XGD_INTEGRATION), 1)
@install -d $(XGD_DESKTOP_DIR)
|