mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
b0e6fb00cb
http://www.abisource.com/release-notes/2.4.1.phtml - Replace from pkg-install to plist by use '@exec /bin/mkdir -p...', it's easier that way. - Correct the plist for plugins by add '@unexec /bin/rmdir....true' - Re-enable install the .server and .xml files for bonobo/ui stuff, only happen if GNOME is enable (autocheck by libgnomeui). - Add CONFLICTS with abiword(-plugins)-devel now. - As for plugins, grammar-checker, OpenWriter and OpenDocument have been added.
28 lines
807 B
Plaintext
28 lines
807 B
Plaintext
--- src/config/abi_defs.mk.orig Sun Jun 12 16:07:25 2005
|
|
+++ src/config/abi_defs.mk Sun Jun 12 16:08:49 2005
|
|
@@ -202,11 +202,11 @@
|
|
## INSTALL program...
|
|
|
|
define MAKE_OBJDIR
|
|
-if test ! -d $(@D); then rm -rf $(@D); mkdir -p $(@D); fi
|
|
+if test ! -d $(@D); then rm -rf $(@D); $(ABIMKDIR) -p $(@D); fi
|
|
endef
|
|
|
|
define VERIFY_DIRECTORY
|
|
-if test ! -d xxxx; then rm -rf xxxx; mkdir -p xxxx; fi
|
|
+if test ! -d xxxx; then rm -rf xxxx; $(ABIMKDIR) -p xxxx; fi
|
|
endef
|
|
|
|
ifeq ($(OS_NAME), WIN32)
|
|
@@ -251,7 +251,9 @@
|
|
##################################################################
|
|
##################################################################
|
|
|
|
-ABICOPY=cp
|
|
+ABICOPY = cp
|
|
+ABICHMOD = chmod
|
|
+ABIMKDIR = mkdir -m u=rwx,go=rx
|
|
|
|
ifdef ABISOURCE_LICENSED_TRADEMARKS
|
|
ABI_TMDEFS= -DABISOURCE_LICENSED_TRADEMARKS
|