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

Collapse All | Expand All

(-)pl-5.6.4.orig/packages/Makefile.in (-2 / +2 lines)
Lines 76-82 Link Here
76
76
77
install::
77
install::
78
	for p in $(PKG); do \
78
	for p in $(PKG); do \
79
	    if [ -r $$p/Makefile ]; then ( cd $$p && $(MAKE) $@ ); fi; \
79
	    if [ -r $$p/Makefile ]; then $(MAKE) -C $$p $@ || exit 1; fi; \
80
        done
80
        done
81
	@echo "*** Forcing update of library index ***"
81
	@echo "*** Forcing update of library index ***"
82
	rm -f $(DESTDIR)$(PLLIB)/INDEX.pl
82
	rm -f $(DESTDIR)$(PLLIB)/INDEX.pl
Lines 127-133 Link Here
127
127
128
check::
128
check::
129
	for p in $(PKG); do \
129
	for p in $(PKG); do \
130
	    if [ -r $$p/Makefile ]; then ( cd $$p && $(MAKE) $@ ); fi; \
130
	    if [ -r $$p/Makefile ]; then $(MAKE) -C $$p $@ || exit 1; fi; \
131
        done
131
        done
132
132
133
# test environment
133
# test environment
(-)pl-5.6.4.orig/packages/db/Makefile.in (+7 lines)
Lines 9-14 Link Here
9
PL=@PL@
9
PL=@PL@
10
PLBASE=@PLBASE@
10
PLBASE=@PLBASE@
11
PLARCH=@PLARCH@
11
PLARCH=@PLARCH@
12
PKGDOC=$(PLBASE)/doc/packages
12
PCEHOME=/staff/jan/src/xpce
13
PCEHOME=/staff/jan/src/xpce
13
DESTDIR=
14
DESTDIR=
14
15
Lines 57-66 Link Here
57
		$(INSTALL) -m 644 $(LIBPL) $(DESTDIR)$(PLBASE)/library
58
		$(INSTALL) -m 644 $(LIBPL) $(DESTDIR)$(PLBASE)/library
58
		$(PL) -f none -g make -t halt
59
		$(PL) -f none -g make -t halt
59
60
61
html-install::
62
		mkdir -p $(DESTDIR)$(PKGDOC)
63
		$(INSTALL_DATA) $(DOC).html $(DESTDIR)$(PKGDOC)
64
60
uninstall:
65
uninstall:
61
		(cd $(PLBASE)/library && rm -f $(LIBPL))
66
		(cd $(PLBASE)/library && rm -f $(LIBPL))
62
		$(PL) -f none -g make -t halt
67
		$(PL) -f none -g make -t halt
63
68
69
check::
70
64
################################################################
71
################################################################
65
# Documentation
72
# Documentation
66
################################################################
73
################################################################
(-)pl-5.6.4.orig/packages/mp/Makefile.in (+9 lines)
Lines 7-12 Link Here
7
PL=@PL@
7
PL=@PL@
8
PLBASE=@PLBASE@
8
PLBASE=@PLBASE@
9
PLARCH=@PLARCH@
9
PLARCH=@PLARCH@
10
PKGDOC=$(PLBASE)/doc/packages
10
11
11
CC=@CC@
12
CC=@CC@
12
COFLAGS=@COFLAGS@
13
COFLAGS=@COFLAGS@
Lines 17-22 Link Here
17
LOCALLIB=@LOCALLIB@
18
LOCALLIB=@LOCALLIB@
18
LIBS=@LIBS@
19
LIBS=@LIBS@
19
20
21
DOC=mp
22
20
LD=@LD@
23
LD=@LD@
21
LDFLAGS=@LDSOFLAGS@
24
LDFLAGS=@LDSOFLAGS@
22
25
Lines 50-55 Link Here
50
		done
53
		done
51
		$(PL) -f none -g make -t halt
54
		$(PL) -f none -g make -t halt
52
55
56
html-install:
57
		mkdir -p $(DESTDIR)$(PKGDOC)
58
		$(INSTALL_DATA) $(DOC).html $(DESTDIR)$(PKGDOC)
59
60
check::
61
53
uninstall:
62
uninstall:
54
		(cd $(PLBASE)/lib/$(PLARCH) && rm -f $(TARGETS))
63
		(cd $(PLBASE)/lib/$(PLARCH) && rm -f $(TARGETS))
55
		(cd $(PLBASE)/library && rm -f $(LIBPL))
64
		(cd $(PLBASE)/library && rm -f $(LIBPL))
(-)pl-5.6.4.orig/packages/mp/configure.in (+1 lines)
Lines 68-73 Link Here
68
AC_MSG_RESULT("		PLSOEXT=$PLSOEXT")
68
AC_MSG_RESULT("		PLSOEXT=$PLSOEXT")
69
else
69
else
70
PLLD=../plld.sh
70
PLLD=../plld.sh
71
PL=../pl.sh
71
fi
72
fi
72
73
73
CC=$PLLD
74
CC=$PLLD

Return to bug 116567