Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 88135 | Differences between
and this patch

Collapse All | Expand All

(-)oldMakefile.PL (-7 / +7 lines)
Lines 386-397 Link Here
386
				push(@postamble, join(
386
				push(@postamble, join(
387
					  "\n",
387
					  "\n",
388
					  qq{\# --- Mozilla/Netscape Plugin:\n},
388
					  qq{\# --- Mozilla/Netscape Plugin:\n},
389
					  qq{\t\@cd Plugin && \$(MAKE) install PLUGDIR=\"$x1\"\n}
389
					  qq{\t\@cd Plugin && \$(MAKE) install PLUGDIR=\"\$(DESTDIR)$x1\"\n}
390
				 ));
390
				 ));
391
			}
391
			}
392
		}
392
		}
393
393
394
		if ($VRML::Config::vrml_config{JAVA_INST} && $VRML::Config::vrml_config{NETSCAPE_CLASSES}) {
394
		if ($VRML::Config::vrml_config{JAVA_INST}) { # && $VRML::Config::vrml_config{NETSCAPE_CLASSES}) {
395
			push(@postamble, join(
395
			push(@postamble, join(
396
				  "\n",
396
				  "\n",
397
				  qq{\# --- Java Archive\n},
397
				  qq{\# --- Java Archive\n},
Lines 404-410 Link Here
404
				  "\n",
404
				  "\n",
405
				qq{\# copy fonts, libjs.so over\n},
405
				qq{\# copy fonts, libjs.so over\n},
406
				qq{\tcp -r fonts \$(DESTINSTALLPRIVLIB)/VRML\n},
406
				qq{\tcp -r fonts \$(DESTINSTALLPRIVLIB)/VRML\n},
407
				qq{\tcp JS/$jsobjdir/libjs.so $LIB_DIR\n},
407
				qq{\tcp JS/$jsobjdir/libjs.so \$(DESTDIR)$LIB_DIR\n},
408
				qq{\# copy copy the initialization file over\n},
408
				qq{\# copy copy the initialization file over\n},
409
				qq{\tcp CFrontEnd/fw2init.pl \$(DESTINSTALLPRIVLIB)/VRML\n},
409
				qq{\tcp CFrontEnd/fw2init.pl \$(DESTINSTALLPRIVLIB)/VRML\n},
410
				));
410
				));
Lines 412-418 Link Here
412
			push(@postamble, join(
412
			push(@postamble, join(
413
				"\n",
413
				"\n",
414
				qq{# make the libFreeWRLFunc shared library active\n},
414
				qq{# make the libFreeWRLFunc shared library active\n},
415
				qq{\tcp blib/arch/auto/VRML/VRMLFunc/VRMLFunc.so $LIB_DIR/libFreeWRLFunc.so\n},
415
				qq{\tcp blib/arch/auto/VRML/VRMLFunc/VRMLFunc.so \$(DESTDIR)$LIB_DIR/libFreeWRLFunc.so\n},
416
				qq{\t/sbin/ldconfig\n}
416
				qq{\t/sbin/ldconfig\n}
417
			));
417
			));
418
		}
418
		}
Lines 431-437 Link Here
431
431
432
		# make the C Front End.
432
		# make the C Front End.
433
		my $def2;
433
		my $def2;
434
		my $def1 = "OSNAME=\$(OSNAME) PPATH=\$(INSTALLPRIVLIB)/VRML BINDIR=\$(FRONTEND_DIR) ";
434
		my $def1 = "OSNAME=\$(OSNAME) PPATH=\$(INSTALLPRIVLIB)/VRML BINDIR=\$(DESTDIR)\$(FRONTEND_DIR) ";
435
		if ($VRML::Config::vrml_config{BOUNDS_CHECK} eq "on") {
435
		if ($VRML::Config::vrml_config{BOUNDS_CHECK} eq "on") {
436
			print "COMPILING WITH BOUNDSCHECKING\n";
436
			print "COMPILING WITH BOUNDSCHECKING\n";
437
			$def2 = "INC=\"$MYINC\" LIBS=\"$MYLIBS\" LDFLAGS=\"$MYLDFLAGS\" BC=\"-lboundscheck\"";
437
			$def2 = "INC=\"$MYINC\" LIBS=\"$MYLIBS\" LDFLAGS=\"$MYLDFLAGS\" BC=\"-lboundscheck\"";
Lines 513-520 Link Here
513
		if ($OS eq "Linux") {
513
		if ($OS eq "Linux") {
514
			push(@postamble, join(
514
			push(@postamble, join(
515
				"\n",
515
				"\n",
516
				qq{\tcp blib/arch/auto/VRML/VRMLFunc/VRMLFunc.so $LIB_DIR/libFreeWRLFunc.so\n},
516
				qq{\t\tcp -f blib/arch/auto/VRML/VRMLFunc/VRMLFunc.so blib/arch/auto/VRML/VRMLFunc/libFreeWRLFunc.so\n},
517
				qq{\t/sbin/ldconfig\n}
517
#				qq{\t/sbin/ldconfig\n}
518
			));
518
			));
519
		}
519
		}
520
		if ($OS eq "Darwin") {
520
		if ($OS eq "Darwin") {

Return to bug 88135