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

Collapse All | Expand All

(-)linphone-3.4.1.orig/Makefile.am (-8 / +8 lines)
Lines 31-43 Link Here
31
		share/sounds/linphone/rings/rock.wav
31
		share/sounds/linphone/rings/rock.wav
32
32
33
33
34
INSTALLDIR=$(shell cd $(top_builddir) && pwd)/linphone-install
34
INSTALLDIR=`cd $(top_builddir) && pwd`/linphone-install
35
INSTALLDIR_WITH_PREFIX=$(INSTALLDIR)/$(prefix)
35
INSTALLDIR_WITH_PREFIX=$(INSTALLDIR)/$(prefix)
36
ZIPFILE=$(shell cd $(top_builddir) && pwd)/$(PACKAGE)-win32-$(VERSION).zip
36
ZIPFILE=`cd $(top_builddir) && pwd`/$(PACKAGE)-win32-$(VERSION).zip
37
ZIP_EXCLUDED=include lib \
37
ZIP_EXCLUDED=include lib \
38
		$(OPTIONAL_SOUNDS)
38
		$(OPTIONAL_SOUNDS)
39
39
40
SDK_ZIPFILE=$(shell cd $(top_builddir) && pwd)/lib$(PACKAGE)-win32-$(VERSION).zip
40
SDK_ZIPFILE=`cd $(top_builddir) && pwd`/lib$(PACKAGE)-win32-$(VERSION).zip
41
SDK_EXCLUDED= \
41
SDK_EXCLUDED= \
42
	bin/linphone.exe \
42
	bin/linphone.exe \
43
	lib/*.la \
43
	lib/*.la \
Lines 51-61 Link Here
51
GTK_PREFIX=/
51
GTK_PREFIX=/
52
GTK_THEME=Outcrop
52
GTK_THEME=Outcrop
53
GTK_FILELIST=gtk+-2.22.1.filelist
53
GTK_FILELIST=gtk+-2.22.1.filelist
54
GTK_FILELIST_PATH=$(shell cd $(top_srcdir) && pwd)/$(GTK_FILELIST)
54
GTK_FILELIST_PATH=`cd $(top_srcdir) && pwd/$(GTK_FILELIST)
55
LINPHONEDEPS_FILELIST=linphone-deps.filelist
55
LINPHONEDEPS_FILELIST=linphone-deps.filelist
56
WINBINDIST_FILES=$(shell cat $(top_srcdir)/$(LINPHONEDEPS_FILELIST))
56
WINBINDIST_FILES=`cat $(top_srcdir)/$(LINPHONEDEPS_FILELIST)`
57
ISS_SCRIPT=linphone.iss
57
ISS_SCRIPT=linphone.iss
58
ISS_SCRIPT_PATH=$(shell cd $(top_srcdir) && pwd)/$(ISS_SCRIPT)
58
ISS_SCRIPT_PATH=`cd $(top_srcdir) && pwd`/$(ISS_SCRIPT)
59
#path to Inno Setup 5 compiler
59
#path to Inno Setup 5 compiler
60
ISCC=ISCC.exe
60
ISCC=ISCC.exe
61
PACKAGE_WIN32_FILELIST=$(PACKAGE)-win32.filelist
61
PACKAGE_WIN32_FILELIST=$(PACKAGE)-win32.filelist
Lines 180-188 Link Here
180
180
181
Portfile:	$(top_srcdir)/scripts/Portfile.tmpl dist
181
Portfile:	$(top_srcdir)/scripts/Portfile.tmpl dist
182
	sed -e 's/\@VERSION\@/$(LINPHONE_VERSION)/g' \
182
	sed -e 's/\@VERSION\@/$(LINPHONE_VERSION)/g' \
183
	  -e 's/\@LINPHONE_MD5\@/$(shell md5sum linphone-$(VERSION).tar.gz | awk {'print $$1'})/' < $< > $@
183
	  -e 's/\@LINPHONE_MD5\@/`md5sum linphone-$(VERSION).tar.gz | awk {'print $$1'}`/' < $< > $@
184
184
185
Portfile-devel:	$(top_srcdir)/scripts/Portfile-devel.tmpl dist
185
Portfile-devel:	$(top_srcdir)/scripts/Portfile-devel.tmpl dist
186
	sed -e 's/\@VERSION\@/$(LINPHONE_VERSION)/g' \
186
	sed -e 's/\@VERSION\@/$(LINPHONE_VERSION)/g' \
187
	  -e 's/\@LINPHONE_MD5\@/$(shell md5sum linphone-$(VERSION).tar.gz | awk {'print $$1'})/' < $< > $@
187
	  -e 's/\@LINPHONE_MD5\@/`md5sum linphone-$(VERSION).tar.gz | awk {'print $$1'}`/' < $< > $@
188
188
(-)linphone-3.4.1.orig/coreapi/help/Makefile.am (-1 / +1 lines)
Lines 15-21 Link Here
15
doc_html_DATA = $(top_builddir)/coreapi/help/doc/html/html.tar
15
doc_html_DATA = $(top_builddir)/coreapi/help/doc/html/html.tar
16
16
17
$(doc_html_DATA): $(top_builddir)/coreapi/help/doc/html/index.html
17
$(doc_html_DATA): $(top_builddir)/coreapi/help/doc/html/index.html
18
	cd $(<D) && tar cf html.tar *
18
	cd $(top_builddir)/coreapi/help/doc/html && tar cf html.tar *
19
19
20
$(top_builddir)/coreapi/help/doc/html/index.html: $(SOURCES) Doxyfile Makefile.am
20
$(top_builddir)/coreapi/help/doc/html/index.html: $(SOURCES) Doxyfile Makefile.am
21
	rm -rf doc
21
	rm -rf doc
(-)linphone-3.4.1.orig/m4/Makefile.am (-1 / +1 lines)
Lines 1-2 Link Here
1
EXTRA_DIST= $(shell cd $(srcdir) && ls *.m4)
1
EXTRA_DIST= `cd $(srcdir) && ls *.m4`
2
2

Return to bug 354533