aboutsummaryrefslogtreecommitdiffstats
path: root/openssl
diff options
context:
space:
mode:
authorMarcin Juszkiewicz <hrw@openembedded.org>2004-06-04 12:38:58 +0000
committerMarcin Juszkiewicz <hrw@openembedded.org>2004-06-04 12:38:58 +0000
commit3a50e32ab2fdd61c7a9c5956478fcd566386d6a6 (patch)
tree388099e09f8c4e85fe993b330bf1e9038ae42f91 /openssl
parenta389904252b10730a6e93080d3f7ca833535d8e5 (diff)
downloadopenembedded-3a50e32ab2fdd61c7a9c5956478fcd566386d6a6.tar.gz
openssl/openssh fixes
BKrev: 40c06d62lPK7koYZrzTvdKhIk8HSWg
Diffstat (limited to 'openssl')
-rw-r--r--openssl/openssl-0.9.7d/debian.patch0
-rw-r--r--openssl/openssl_0.9.7d.oe12
2 files changed, 7 insertions, 5 deletions
diff --git a/openssl/openssl-0.9.7d/debian.patch b/openssl/openssl-0.9.7d/debian.patch
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/openssl/openssl-0.9.7d/debian.patch
diff --git a/openssl/openssl_0.9.7d.oe b/openssl/openssl_0.9.7d.oe
index ae9c7aab09..4cf16767cb 100644
--- a/openssl/openssl_0.9.7d.oe
+++ b/openssl/openssl_0.9.7d.oe
@@ -1,7 +1,8 @@
SECTION = "libs"
DESCRIPTION = "Secure Socket Layer (SSL) binary and related cryptographic tools."
-SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz"
+SRC_URI = "http://www.openssl.org/source/openssl-${PV}.tar.gz \
+ file://debian.patch;patch=1"
S = "${WORKDIR}/openssl-${PV}"
AR_append = " r"
@@ -51,13 +52,14 @@ do_compile () {
do_stage () {
cp --dereference -R include/openssl ${STAGING_INCDIR}/
- oe_libinstall -a -so libcrypto ${STAGING_LIBDIR}
- oe_libinstall -a -so libssl ${STAGING_LIBDIR}
+ oe_libinstall -a -so ${S}/libcrypto ${STAGING_LIBDIR}
+ oe_libinstall -a -so ${S}/libssl ${STAGING_LIBDIR}
}
do_install () {
- install -d ${D}/${libdir}/pkgconfig
+ install -m 0755 -d ${D}/${libdir}/pkgconfig
oe_runmake -f Makefile.ssl INSTALL_PREFIX="${D}" install
- chmod u+rx ${D}/${libdir}/pkgconfig
chmod 644 ${D}/${libdir}/pkgconfig/openssl.pc
+ oe_libinstall -so ${S}/libcrypto ${D}/${libdir}
+ oe_libinstall -so ${S}/libssl ${D}/${libdir}
}
ankm/dizzy-backports'>dankm/dizzy-backports OpenEmbedded Core user contribution treesGrokmirror user
summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/fetch/osc.py
blob: ed773939b0fe7015e6aa43da7f260a54d253512e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150