diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-08 17:26:57 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-08 17:26:57 +0200 |
commit | 643800cee0ad5b853f06056ff90d24efa670f68c (patch) | |
tree | d873494ef64659d0cd0a836d2e2dd380d585e5c7 /package/openssl/Makefile | |
parent | 3c70077f308437281c72431223b532f6f427e1d0 (diff) | |
parent | 081830a11721ddc097fd2272d4e7ebd47cb7f8dd (diff) |
Merge remote branch 'phil/auto-config-in'
Conflicts:
Config.in
package/dropbear/Makefile
package/iptables/Makefile
package/kismet/Makefile
package/nfs-utils/Makefile
package/ntpclient/Makefile
package/openvpn/Makefile
package/pkgmaker
package/rxvt-unicode/Makefile
package/vgp/Makefile
package/wpa_supplicant/Makefile
package/xf86-input-keyboard/Makefile
package/xf86-input-mouse/Makefile
Diffstat (limited to 'package/openssl/Makefile')
-rw-r--r-- | package/openssl/Makefile | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/package/openssl/Makefile b/package/openssl/Makefile index 1f77db9f8..70d8e9e2d 100644 --- a/package/openssl/Makefile +++ b/package/openssl/Makefile @@ -4,25 +4,27 @@ include ${TOPDIR}/rules.mk PKG_NAME:= openssl -PKG_VERSION:= 1.0.0 +PKG_VERSION:= 1.0.0a PKG_RELEASE:= 1 -PKG_MD5SUM:= 89eaa86e25b2845f920ec00ae4c864ed +PKG_MD5SUM:= e3873edfffc783624cfbdb65e2249cbd PKG_DESCR:= OpenSSL (Secure Socket Layer) libraries PKG_SECTION:= libs PKG_DEPENDS:= zlib PKG_BUILDDEP+= zlib -PKG_URL:= http://www.openssl.org -PKG_SITES:= http://www.openssl.org/source/ \ +PKG_URL:= http://www.openssl.org/ +PKG_SITES:= http://www.openssl.org/source/ PKG_DESCR_UTIL:= OpenSSL (Secure Socket Layer) command line tool -PKG_SECTION_UTIL:= admin +PKG_SECTION_UTIL:= crypto PKG_DEPENDS_UTIL:= libopenssl PKG_DEPENDS_DEV:= libopenssl +PKG_DESCR_LIB_DEV:= development files for openssl +PKG_SECTION_LIB_DEV:= devel include ${TOPDIR}/mk/package.mk $(eval $(call PKG_template,LIBOPENSSL,libopenssl,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) -$(eval $(call PKG_template,LIBOPENSSL_DEV,libopenssl-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS_DEV},${PKG_DESCR},${PKG_SECTION})) +$(eval $(call PKG_template,LIBOPENSSL_DEV,libopenssl-dev,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS_DEV},${PKG_DESCR_LIB_DEV},${PKG_SECTION_LIB_DEV})) $(eval $(call PKG_template,OPENSSL_UTIL,openssl-util,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS_UTIL},${PKG_DESCR_UTIL},${PKG_SECTION_UTIL})) SUB_INSTALLS-y:= @@ -37,9 +39,6 @@ FAKE_FLAGS+= INSTALL_PREFIX=${WRKINST} OPENSSL_OPTIONS = shared no-ec no-err no-krb5 no-threads zlib-dynamic no-engines no-camellia no-idea no-rc5 no-mdc2 no-sha0 no-smime no-aes192 no-ripemd no-cast -#post-extract: -# @find ${WRKBUILD} -name *.rej -exec rm {} \; - do-configure: (cd $(WRKBUILD); \ PATH=$(TARGET_PATH) \ |