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

Collapse All | Expand All

(-)sox/Makefile.in~ (-25 / +25 lines)
Lines 98-132 Link Here
98
PLAY_INSTALL_1    = install-play
98
PLAY_INSTALL_1    = install-play
99
99
100
install: sox soxmix $(PLAY_INSTALL_$(PLAY_SUPPORT))
100
install: sox soxmix $(PLAY_INSTALL_$(PLAY_SUPPORT))
101
	$(srcdir)/mkinstalldirs $(bindir)
101
	$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
102
	$(srcdir)/mkinstalldirs $(mandir)/man1
102
	$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
103
	$(INSTALL) -c -m 755 sox $(bindir)
103
	$(INSTALL) -c -m 755 sox $(DESTDIR)$(bindir)
104
	$(INSTALL) -c -m 755 soxmix $(bindir)
104
	$(INSTALL) -c -m 755 soxmix $(DESTDIR)$(bindir)
105
	$(INSTALL) -c -m 644 $(srcdir)/sox.1 $(mandir)/man1
105
	$(INSTALL) -c -m 644 $(srcdir)/sox.1 $(DESTDIR)$(mandir)/man1
106
	if [ -f $(mandir)/man1/soxmix.1 ] ; then $(RM) $(mandir)/man1/soxmix.1; fi
106
	if [ -f $(DESTDIR)$(mandir)/man1/soxmix.1 ] ; then $(RM) $(DESTDIR)$(mandir)/man1/soxmix.1; fi
107
	$(LN_S) $(mandir)/man1/sox.1 $(mandir)/man1/soxmix.1
107
	echo ".so sox.1" > $(DESTDIR)$(mandir)/man1/soxmix.1
108
	$(INSTALL) -c -m 644 $(srcdir)/soxexam.1 $(mandir)/man1
108
	$(INSTALL) -c -m 644 $(srcdir)/soxexam.1 $(DESTDIR)$(mandir)/man1
109
109
110
install-play:
110
install-play:
111
	if [ -f $(bindir)/rec ] ; then $(RM) $(bindir)/rec; fi
111
	if [ -f $(DESTDIR)$(bindir)/rec ] ; then $(RM) $(DESTDIR)$(bindir)/rec; fi
112
	if [ -f $(mandir)/man1/rec.1 ]; then $(RM) $(mandir)/man1/rec.1; fi
112
	if [ -f $(DESTDIR)$(mandir)/man1/rec.1 ]; then $(RM) $(DESTDIR)$(mandir)/man1/rec.1; fi
113
	$(srcdir)/mkinstalldirs $(mandir)/man1
113
	$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man1
114
	$(srcdir)/mkinstalldirs $(bindir)
114
	$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
115
	$(INSTALL) -c -m 755 play $(bindir)
115
	$(INSTALL) -c -m 755 play $(DESTDIR)$(bindir)
116
	$(INSTALL) -c -m 644 $(srcdir)/play.1 $(mandir)/man1
116
	$(INSTALL) -c -m 644 $(srcdir)/play.1 $(DESTDIR)$(mandir)/man1
117
	$(LN_S) $(bindir)/play $(bindir)/rec
117
	$(LN_S) $(bindir)/play $(DESTDIR)$(bindir)/rec
118
	$(LN_S) $(mandir)/man1/play.1 $(mandir)/man1/rec.1
118
	echo ".so sox.1" > $(DESTDIR)$(mandir)/man1/rec.1
119
119
120
install-lib: libst.a
120
install-lib: libst.a
121
	$(srcdir)/mkinstalldirs $(libdir)
121
	$(srcdir)/mkinstalldirs $(DESTDIR)$(libdir)
122
	$(srcdir)/mkinstalldirs $(mandir)/man3
122
	$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/man3
123
	$(srcdir)/mkinstalldirs $(includedir)
123
	$(srcdir)/mkinstalldirs $(DESTDIR)$(includedir)
124
	$(INSTALL) -c -m 755 libst-config $(bindir)
124
	$(INSTALL) -c -m 755 libst-config $(DESTDIR)$(bindir)
125
	$(INSTALL) -c -m 644 libst.a $(libdir)
125
	$(INSTALL) -c -m 644 libst.a $(DESTDIR)$(libdir)
126
	$(RANLIB) $(libdir)/libst.a
126
	$(RANLIB) $(DESTDIR)$(libdir)/libst.a
127
	$(INSTALL) -c -m 644 $(srcdir)/libst.3 $(mandir)/man3
127
	$(INSTALL) -c -m 644 $(srcdir)/libst.3 $(DESTDIR)$(mandir)/man3
128
	$(INSTALL) -c -m 644 $(srcdir)/st.h $(includedir)
128
	$(INSTALL) -c -m 644 $(srcdir)/st.h $(DESTDIR)$(includedir)
129
	$(INSTALL) -c -m 644 ststdint.h $(includedir)
129
	$(INSTALL) -c -m 644 ststdint.h $(DESTDIR)$(includedir)
130
130
131
GSM_INSTALL_0       =
131
GSM_INSTALL_0       =
132
GSM_INSTALL_1       = install-gsmlib
132
GSM_INSTALL_1       = install-gsmlib

Return to bug 62854