diff --git a/network/libtirpc/libtirpc.cache b/network/libtirpc/libtirpc.cache new file mode 100644 index 000000000..818baacee --- /dev/null +++ b/network/libtirpc/libtirpc.cache @@ -0,0 +1,26 @@ + +[TIMESTAMP] 1257891022 Tue Nov 10 23:10:22 2009 +[BUILDTIME] 10 (5) +[SIZE] 0.74 MB, 65 files + +[DEP] bash +[DEP] binutils +[DEP] bzip2 +[DEP] coreutils +[DEP] diffutils +[DEP] e2fsprogs +[DEP] fhs +[DEP] file +[DEP] findutils +[DEP] gawk +[DEP] gcc +[DEP] glibc +[DEP] grep +[DEP] linux-header +[DEP] make +[DEP] mktemp +[DEP] patch +[DEP] sed +[DEP] sysfiles +[DEP] tar +[DEP] util-linux diff --git a/network/libtirpc/libtirpc.desc b/network/libtirpc/libtirpc.desc new file mode 100644 index 000000000..7e17de591 --- /dev/null +++ b/network/libtirpc/libtirpc.desc @@ -0,0 +1,31 @@ +[COPY] --- SDE-COPYRIGHT-NOTE-BEGIN --- +[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch. +[COPY] +[COPY] Filename: package/.../libtirpc/libtirpc.desc +[COPY] Copyright (C) 2009 The OpenSDE Project +[COPY] +[COPY] More information can be found in the files COPYING and README. +[COPY] +[COPY] This program is free software; you can redistribute it and/or modify +[COPY] it under the terms of the GNU General Public License as published by +[COPY] the Free Software Foundation; version 2 of the License. A copy of the +[COPY] GNU General Public License can be found in the file COPYING. +[COPY] --- SDE-COPYRIGHT-NOTE-END --- + +[I] Transport Independent RPC Library + +[T] Libtirpc is a port of Suns Transport-Independent RPC library to Linux. +[T] It's being developed by the Bull GNU/Linux NFSv4 project. + +[A] Gilles Quillard +[A] Antoine Fraticelli +[M] The OpenSDE Community + +[C] base/system + +[L] GPL +[S] Stable +[V] 0.2.0 +[P] X -----5---9 189.400 + +[D] 2652388872 libtirpc-0.2.0.tar.bz2 http://dl.sourceforge.net/sourceforge/libtirpc/ diff --git a/network/libtirpc/no-gss.patch b/network/libtirpc/no-gss.patch new file mode 100644 index 000000000..db430182b --- /dev/null +++ b/network/libtirpc/no-gss.patch @@ -0,0 +1,29 @@ +# --- SDE-COPYRIGHT-NOTE-BEGIN --- +# This copyright note is auto-generated by ./scripts/Create-CopyPatch. +# +# Filename: package/.../libtirpc/no-gss.patch +# Copyright (C) 2009 The OpenSDE Project +# +# More information can be found in the files COPYING and README. +# +# This patch file is dual-licensed. It is available under the license the +# patched project is licensed under, as long as it is an OpenSource license +# as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms +# of the GNU General Public License as published by the Free Software +# Foundation; either version 2 of the License, or (at your option) any later +# version. +# --- SDE-COPYRIGHT-NOTE-END --- + +if gss is disabled, then svc_auth_gss_ops won't be available + +--- ./src/svc.c.orig ++++ ./src/svc.c +@@ -77,7 +77,7 @@ + + extern rwlock_t svc_lock; + extern rwlock_t svc_fd_lock; +-extern struct svc_auth_ops svc_auth_gss_ops; ++extern struct svc_auth_ops svc_auth_gss_ops __attribute__((weak)); + + static struct svc_callout *svc_find (rpcprog_t, rpcvers_t, + struct svc_callout **, char *);