diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-libs/libntlm | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-libs/libntlm')
-rw-r--r-- | net-libs/libntlm/Manifest | 2 | ||||
-rw-r--r-- | net-libs/libntlm/libntlm-1.3.ebuild | 23 | ||||
-rw-r--r-- | net-libs/libntlm/libntlm-1.4.ebuild | 15 | ||||
-rw-r--r-- | net-libs/libntlm/metadata.xml | 12 |
4 files changed, 52 insertions, 0 deletions
diff --git a/net-libs/libntlm/Manifest b/net-libs/libntlm/Manifest new file mode 100644 index 000000000000..83234c62ad98 --- /dev/null +++ b/net-libs/libntlm/Manifest @@ -0,0 +1,2 @@ +DIST libntlm-1.3.tar.gz 518803 SHA256 ea1955e4acbb0d4303b2121a4808eb4abb88d5360f90149b90ac650542c83780 SHA512 d375d472167e9c0f142e2415428f48ef692c9fcfe4d882ca442e0fbff86554a5bee23747ad1eb27f81d32ec2f3f5ff654e5c095e4b62dc25dc4918e6664966c0 WHIRLPOOL b7caafd136404fd61891601e9e50c42662b007889e2609c9ed9291486dadda62c70f55d2bf79bdeef047b77ed76cddb27d85a059e6d1953c7b00f2581d29695c +DIST libntlm-1.4.tar.gz 568414 SHA256 8415d75e31d3135dc7062787eaf4119b984d50f86f0d004b964cdc18a3182589 SHA512 888ed2e9ee3e01a53bec951534966378a21c8a0baf555b65d97fed4408568c6b67f4199396cf3e61bb5a73b8e47dbe1333449369a92499e16478b0b60ac78274 WHIRLPOOL fa0967ebcf6dd01f579a73763eef52c6f87d824620e80fa09e263171553190f355d0a8efb04b1567e5431d9df9f69b9041850d9fd28f5064f8d2ecc8916bd80b diff --git a/net-libs/libntlm/libntlm-1.3.ebuild b/net-libs/libntlm/libntlm-1.3.ebuild new file mode 100644 index 000000000000..1b19a4eeeb09 --- /dev/null +++ b/net-libs/libntlm/libntlm-1.3.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +DESCRIPTION="Microsoft's NTLM authentication (libntlm) library" +HOMEPAGE="http://www.nongnu.org/libntlm/" +SRC_URI="http://www.nongnu.org/${PN}/releases/${P}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2" +KEYWORDS="alpha amd64 ~amd64-linux arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd" +IUSE="" + +src_configure() { + econf --disable-valgrind-tests +} + +src_install () { + emake DESTDIR="${D}" install + dodoc AUTHORS ChangeLog NEWS README +} diff --git a/net-libs/libntlm/libntlm-1.4.ebuild b/net-libs/libntlm/libntlm-1.4.ebuild new file mode 100644 index 000000000000..faa6568c1ea7 --- /dev/null +++ b/net-libs/libntlm/libntlm-1.4.ebuild @@ -0,0 +1,15 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 +inherit autotools-utils + +DESCRIPTION="Microsoft's NTLM authentication (libntlm) library" +HOMEPAGE="http://www.nongnu.org/libntlm/" +SRC_URI="http://www.nongnu.org/${PN}/releases/${P}.tar.gz" + +SLOT="0" +LICENSE="LGPL-2" +KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ~ppc64 sparc x86 ~x86-fbsd ~amd64-linux" +IUSE="static-libs" diff --git a/net-libs/libntlm/metadata.xml b/net-libs/libntlm/metadata.xml new file mode 100644 index 000000000000..3f5765681d73 --- /dev/null +++ b/net-libs/libntlm/metadata.xml @@ -0,0 +1,12 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-mail</herd> +<longdescription> +libntlm is a library that implement Microsoft's NTLM authentication. However, +the packaging of libntlm lacked certain things, such as having build problems, +lacking shared library support, lacking autoconf macro for use in other +applications, lacking pkg-config support, and more. So this page distributes an +improved version of the library; called Libntlm. +</longdescription> +</pkgmetadata> |