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

Collapse All | Expand All

(-)qca-2.0.0-beta5-orig/confapp.pri (-2 / +2 lines)
Lines 2-9 Link Here
2
windows:include(confapp_win.pri)
2
windows:include(confapp_win.pri)
3
3
4
CONFIG(debug, debug|release) {
4
CONFIG(debug, debug|release) {
5
	unix:QCA_LIBNAME = qca_debug
5
	unix:QCA_LIBNAME = qca2_debug
6
	else:QCA_LIBNAME = qcad
6
	else:QCA_LIBNAME = qcad
7
} else {
7
} else {
8
	QCA_LIBNAME = qca
8
	QCA_LIBNAME = qca2
9
}
9
}
(-)qca-2.0.0-beta5-orig/crypto.prf.in (-2 / +2 lines)
Lines 5-12 Link Here
5
LIBS += -L$$QCA_PREFIX/lib
5
LIBS += -L$$QCA_PREFIX/lib
6
6
7
CONFIG(debug, debug|release) {
7
CONFIG(debug, debug|release) {
8
	unix:LIBS += -lqca_debug
8
	unix:LIBS += -lqca2_debug
9
	else:LIBS += -lqcad
9
	else:LIBS += -lqcad
10
} else {
10
} else {
11
	LIBS += -lqca
11
	LIBS += -lqca2
12
}
12
}
(-)qca-2.0.0-beta5-orig/qca.pc.cmake (-1 / +1 lines)
Lines 7-11 Link Here
7
Description: Qt Cryptographic Architecture library\n
7
Description: Qt Cryptographic Architecture library\n
8
Version: 2.0.0 #maybe this shouldn't be literal...
8
Version: 2.0.0 #maybe this shouldn't be literal...
9
Requires: QtCore
9
Requires: QtCore
10
Libs: -L${libdir} -lqca
10
Libs: -L${libdir} -lqca2
11
Cflags: -I${includedir}
11
Cflags: -I${includedir}
(-)qca-2.0.0-beta5-orig/src/src.pro (-1 / +1 lines)
Lines 6-12 Link Here
6
6
7
TEMPLATE = lib
7
TEMPLATE = lib
8
QT      -= gui
8
QT      -= gui
9
TARGET   = qca
9
TARGET   = qca2
10
DESTDIR  = $$QCA_BASE/lib
10
DESTDIR  = $$QCA_BASE/lib
11
windows:DLLDESTDIR = $$QCA_BASE/bin
11
windows:DLLDESTDIR = $$QCA_BASE/bin
12
12
(-)qca-2.0.0-beta5-orig/configure (-2 / +2 lines)
Lines 502-508 Link Here
502
			str =  pkg_template1.arg(prefix);
502
			str =  pkg_template1.arg(prefix);
503
			str += pkg_template2.arg("QCA");
503
			str += pkg_template2.arg("QCA");
504
			str += pkg_template3.arg("QtCore");
504
			str += pkg_template3.arg("QtCore");
505
			str += pkg_template4.arg("qca");
505
			str += pkg_template4.arg("qca2");
506
			f.setFileName("lib/qca.pc");
506
			f.setFileName("lib/qca.pc");
507
			if(f.open(QFile::WriteOnly | QFile::Truncate))
507
			if(f.open(QFile::WriteOnly | QFile::Truncate))
508
				f.write(str.toLatin1());
508
				f.write(str.toLatin1());
Lines 515-521 Link Here
515
			str =  pkg_template1.arg(prefix);
515
			str =  pkg_template1.arg(prefix);
516
			str += pkg_template2.arg("QCA_debug");
516
			str += pkg_template2.arg("QCA_debug");
517
			str += pkg_template3.arg("QtCore_debug");
517
			str += pkg_template3.arg("QtCore_debug");
518
			str += pkg_template4.arg("qca_debug");
518
			str += pkg_template4.arg("qca2_debug");
519
			f.setFileName("lib/qca_debug.pc");
519
			f.setFileName("lib/qca_debug.pc");
520
			if(f.open(QFile::WriteOnly | QFile::Truncate))
520
			if(f.open(QFile::WriteOnly | QFile::Truncate))
521
				f.write(str.toLatin1());
521
				f.write(str.toLatin1());

Return to bug 129536