diff options
author | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-02 13:02:29 +0000 |
---|---|---|
committer | Daichi GOTO <daichi@FreeBSD.org> | 2003-07-02 13:02:29 +0000 |
commit | 3c251ab3e71f5c3493a62554402aef0c82f0ff4e (patch) | |
tree | 15a443eaaae05e146a25f58f737387d65ae94019 /devel/mico/files/patch-src::Makefile | |
parent | fix news/pyne: (diff) |
update devel/mico: 2.3.10 --> 2.3.10_1
- install HTML documentation
- add build options: WITH_X11, WITH_QT, TITH_GTK, WITH_TCL
- fix PLIST and make it flexible and depended on build options
- add WITH_GCC32 option to build with lang/gcc32 on -STABLE
- add patches and rename old
- many style fixes
- change COMMENT to correspond to Mico current state
- decrease pkg-descr to 24 lines
PR: 53988
Submitted by: Sergey Matveychuk <sem@ciam.ru> (maintainer)
Notes
Notes:
svn path=/head/; revision=84045
Diffstat (limited to 'devel/mico/files/patch-src::Makefile')
-rw-r--r-- | devel/mico/files/patch-src::Makefile | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/devel/mico/files/patch-src::Makefile b/devel/mico/files/patch-src::Makefile new file mode 100644 index 000000000000..7feb181a648e --- /dev/null +++ b/devel/mico/files/patch-src::Makefile @@ -0,0 +1,28 @@ +--- Makefile.orig Fri Feb 14 13:55:53 2003 ++++ Makefile Sun Jun 29 13:49:37 2003 +@@ -27,7 +27,7 @@ + PRGDIRS = orb ir cpp idl daemon auxdir coss ccm tools + EXTRADIRS = test demo + ALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm test tools demo +-INSTALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm tools include man demo ++INSTALLDIRS = admin orb ir daemon idl cpp auxdir coss ccm tools include man + # Bootstrap minimal build configuration + MINLIBDIRS = orb ir idl + MINPRGDIRS = cpp idl +@@ -68,11 +68,13 @@ + + install: + for i in $(INSTALLDIRS); do $(MAKE) -C $$i install || exit 1; done ++ ++install-doc: ++ $(MAKE) -C demo install || exit 1; + if test -f doc/doc.ps; then \ +- $(IDIRCMD) $(SHARED_INSTDIR)/doc/mico; \ +- $(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/doc/mico/manual.ps; \ ++ $(IDIRCMD) $(SHARED_INSTDIR)/share/doc/mico; \ ++ $(IMANCMD) doc/doc.ps $(SHARED_INSTDIR)/share/doc/mico/manual.ps; \ + fi +- -ldconfig + + install-cd: + for i in $(INSTALLDIRS); do $(MAKE) -C $$i install-cd || exit 1; done |