From ade1de91d9920a2265db8a0e276b5b3bdeb86f68 Mon Sep 17 00:00:00 2001 From: Juan RP Date: Thu, 20 Feb 2014 09:34:23 +0100 Subject: [PATCH] gsasl: remove long_desc. --- srcpkgs/gsasl/template | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/srcpkgs/gsasl/template b/srcpkgs/gsasl/template index f66795ade34..0d5d68436d5 100644 --- a/srcpkgs/gsasl/template +++ b/srcpkgs/gsasl/template @@ -1,44 +1,32 @@ # Template file for 'gsasl' pkgname=gsasl version=1.8.0 -revision=2 +revision=3 build_style=gnu-configure configure_args="--with-gssapi-impl=mit" distfiles="${GNU_SITE}/${pkgname}/${pkgname}-${version}.tar.gz" -makedepends="pkg-config readline-devel gnutls-devel>=3.1.5 - libidn-devel mit-krb5-devel" +hostmakedepends="pkg-config" +makedepends="readline-devel gnutls-devel>=3.1.5 libidn-devel mit-krb5-devel" short_desc="GNU SASL framework and a few common SASL mechanisms" maintainer="davehome " homepage="http://www.gnu.org/software/gsasl" license="GPL-3" checksum=310262d1ded082d1ceefc52d6dad265c1decae8d84e12b5947d9b1dd193191e5 -long_desc=" - GNU SASL is an implementation of the Simple Authentication and Security Layer - framework and a few common SASL mechanisms. SASL is used by network servers - (e.g., IMAP, SMTP) to request authentication from clients, and in clients to - authenticate against servers. - - GNU SASL consists of a library (libgsasl), a command line utility (gsasl) to - access the library from the shell, and a manual. The library includes support - for the framework (with authentication functions and application data privacy - and integrity functions) and at least partial support for the CRAM-MD5, - EXTERNAL, GSSAPI, ANONYMOUS, PLAIN, SECURID, DIGEST-MD5, SCRAM-SHA-1, - SCRAM-SHA-1-PLUS, LOGIN, and NTLM mechanisms." libgsasl_package() { short_desc+=" - Runtime library" pkg_install() { - vmove "usr/lib/*.so*" - vmove usr/share/locale + vmove "usr/lib/*.so.*" } } gsasl-devel_package() { - depends="libgcrypt-devel libgpg-error-devel libidn-devel libgsasl>=${version}" + depends="libgcrypt-devel libgpg-error-devel libidn-devel libgsasl>=${version}_${revision}" short_desc+=" - development files" pkg_install() { vmove usr/include vmove "usr/lib/*.a" + vmove "usr/lib/*.so" vmove usr/lib/pkgconfig vmove usr/share/man/man3 }