Browse Source

Stefan Fiedler:


			
			
				rocklinux
			
			
		
Stefan Fiedler 17 years ago
parent
commit
adaab079b9
22 changed files with 759 additions and 0 deletions
  1. +24
    -0
      package/gnome2/networkmanager/libnl.patch
  2. +28
    -0
      package/gnome2/networkmanager/networkmanager.conf
  3. +44
    -0
      package/gnome2/networkmanager/networkmanager.desc
  4. +1
    -0
      package/kde4/akonadi/akonadi.conf
  5. +46
    -0
      package/kde4/akonadi/akonadi.desc
  6. +1
    -0
      package/kde4/eigen/eigen.conf
  7. +56
    -0
      package/kde4/eigen/eigen.desc
  8. +3
    -0
      package/kde4/eigen/pkgmapper.in
  9. +1
    -0
      package/kde4/eigen/preconfig.in
  10. +46
    -0
      package/public/cfitsio/cfitsio.desc
  11. +45
    -0
      package/public/dhcdbd/dhcdbd.desc
  12. +45
    -0
      package/public/facile/facile.desc
  13. +46
    -0
      package/public/getfem++/getfem++.desc
  14. +45
    -0
      package/public/ggz-client-libs/ggz-client-libs.desc
  15. +43
    -0
      package/public/indilib/indilib.desc
  16. +19
    -0
      package/public/kerberos5/kerberos5.conf
  17. +45
    -0
      package/public/kerberos5/kerberos5.desc
  18. +45
    -0
      package/public/libggz/libggz.desc
  19. +42
    -0
      package/public/libnl/libnl.desc
  20. +42
    -0
      package/public/libnova/libnova.desc
  21. +44
    -0
      package/public/rasqal/rasqal.desc
  22. +48
    -0
      package/public/redland/redland.desc

+ 24
- 0
package/gnome2/networkmanager/libnl.patch

@ -0,0 +1,24 @@
From https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/194546, fixes:
gcc-43 -Os -march=pentiumpro -o .libs/NetworkManager -rdynamic NetworkManager-nm-device.o NetworkManager-nm-device-802-3-ethernet.o NetworkManager-nm-device-802-11-wireless.o NetworkManager-NetworkManagerAP.o NetworkManager-NetworkManagerAPList.o NetworkManager-NetworkManagerDbus.o NetworkManager-NetworkManagerDbusUtils.o NetworkManager-nm-dbus-nm.o NetworkManager-nm-dbus-device.o NetworkManager-nm-dbus-net.o NetworkManager-nm-dbus-nmi.o NetworkManager-nm-ip4-config.o NetworkManager-NetworkManager.o NetworkManager-NetworkManagerPolicy.o NetworkManager-NetworkManagerUtils.o NetworkManager-NetworkManagerSystem.o NetworkManager-nm-logging.o NetworkManager-nm-netlink-monitor.o NetworkManager-nm-activation-request.o NetworkManager-autoip.o NetworkManager-nm-ap-security.o NetworkManager-nm-ap-security-wep.o NetworkManager-nm-ap-security-wpa-eap.o NetworkManager-nm-ap-security-wpa-psk.o NetworkManager-nm-ap-security-leap.o NetworkManager-nm-marshal-main.o NetworkManager-wpa.o NetworkManager-wpa_ctrl.o /usr/lib/libhal.so -liw -lnl ../utils/.libs/libnmutils.a ./named-manager/.libs/libnamed-manager.a ./vpn-manager/.libs/libvpn-manager.a ./dhcp-manager/.libs/libdhcp-manager.a ./backends/.libs/libnmbackend.a /usr/lib/libgthread-2.0.so -lpthread -lrt ../libnm-util/.libs/libnm-util.so /usr/lib/libdbus-glib-1.so /usr/lib/libdbus-1.so /usr/lib/libgobject-2.0.so /usr/lib/libglib-2.0.so /usr/lib/libgcrypt.so -lnsl /usr/lib/libgpg-error.so
NetworkManager-NetworkManagerSystem.o: In function `new_nl_handle':
NetworkManagerSystem.c:(.text+0xb): undefined reference to `nl_handle_alloc_nondefault'
NetworkManagerSystem.c:(.text+0x27): undefined reference to `nl_handle_set_pid'
--- network-manager-0.6.5/src/NetworkManagerSystem.c 2007-04-18 14:13:06.000000000 -0400
+++ network-manager-0.6.5/src/NetworkManagerSystem.c 2008-03-04 18:25:44.000000000 -0500
@@ -224,10 +224,12 @@
static struct nl_handle * new_nl_handle (void)
{
+ struct nl_cb *cb;
struct nl_handle * nlh = NULL;
- nlh = nl_handle_alloc_nondefault(NL_CB_VERBOSE);
- nl_handle_set_pid (nlh, (pthread_self() << 16 | getpid()));
+ cb = nl_cb_alloc(NL_CB_VERBOSE);
+ nlh = nl_handle_alloc_cb (cb);
+
if (nl_connect(nlh, NETLINK_ROUTE) < 0)
{
nm_warning ("%s: couldn't connecto to netlink: %s", __func__, nl_geterror());

+ 28
- 0
package/gnome2/networkmanager/networkmanager.conf

@ -0,0 +1,28 @@
# --- ROCK-COPYRIGHT-NOTE-BEGIN ---
#
# This copyright note is auto-generated by ./scripts/Create-CopyPatch.
# Please add additional copyright information _after_ the line containing
# the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
# the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
#
# ROCK Linux: rock-src/package/gnome2/gnome-keyring-manager/gnome-keyring-manager.conf
# ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
#
# This program is free software; you can redistribute it and/or modify
# it 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. A copy of the GNU General Public
# License can be found at Documentation/COPYING.
#
# Many people helped and are helping developing ROCK Linux. Please
# have a look at http://www.rocklinux.org/ and the Documentation/TEAM
# file for details.
#
# --- ROCK-COPYRIGHT-NOTE-END ---
. $base/package/gnome2/gnome-2.conf
# networkmanager does not build without a distro given
var_append extraconfopt " " "--with-distro=debian"
pkginstalled gconf || var_append extraconfopt " " "--without-gnome"

+ 44
- 0
package/gnome2/networkmanager/networkmanager.desc

@ -0,0 +1,44 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/gnome2/gnome-keyring-manager/gnome-keyring-manager.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2005 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] a network manager using DBUS and HAL
[T] NetworkManager attempts to make networking invisible. When moving into
[T] areas you've been before, NetworkManager automatically connects to the last
[T] network the user chose to connect to. Likewise, when back at the desk,
[T] NetworkManager will switch to the faster, more reliable wired network
[T] connection.
[U] http://www.gnome.org/projects/NetworkManager
[A] The GNOME Project <gnome-devel-list@gnome.org>
[M] The ROCK Linux Project
[C] extra/network extra/desktop/gnome
[L] GPL
[S] Beta
[V] 0.6.5
[P] X --?--5---9 180.700
[D] 3360036994 NetworkManager-0.6.5.tar.bz2 http://ftp.gnome.org/pub/GNOME/sources/NetworkManager/0.6/

+ 1
- 0
package/kde4/akonadi/akonadi.conf

@ -0,0 +1 @@
. $base/kde4/kde-4.conf

+ 46
- 0
package/kde4/akonadi/akonadi.desc

@ -0,0 +1,46 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/kde4/akonadi/akonadi.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] The PIM Storage Service
[T] Akonadi is a PIM layer, which provides an asynchronous API to access all kind
[T] of PIM data (e.g. mails, contacts, events, todos etc.).
[T]
[T] It consists of several processes (generally called the Akonadi server) and a
[T] library (called client library) which encapsulates the communication
[T] between the client and the server.
[U] http://pim.kde.org/akonadi
[A] { see AUTHORS file }
[M] The ROCK Linux Project
[C] extra/desktop/kde4
[L] GPL
[S] Stable
[V] 1.0.0
[P] X -----5---9 157.120
[D] X akonadi-1.0.0.tar.bz2 svn co svn://anonsvn.kde.org/home/kde/tags/akonadi/1.0.0

+ 1
- 0
package/kde4/eigen/eigen.conf

@ -0,0 +1 @@
. $base/kde4/kde-4.conf

+ 56
- 0
package/kde4/eigen/eigen.desc

@ -0,0 +1,56 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/kde4/eigen/eigen.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] a C++ template library for linear algebra
[T] Eigen is a lightweight C++ template library for vector and matrix math,
[T] a.k.a. linear algebra.
[T] Unlike most other linear algebra libraries, Eigen focuses on the simple
[T] mathematical needs of applications: games and other OpenGL apps,
[T] spreadsheets and other office apps, etc. Eigen is dedicated to providing
[T] optimal speed with GCC.
[M] The ROCK Linux Project
[C] extra/desktop/kde4
[L] GPL
[P] X -----5---9 157.130
#if xpkg == eigen
[U] http://eigen.tuxfamily.org/1
[A] Benoit Jacob (jacob at math jussieu fr) { Lead Developer }
[A] and others... { see http://eigen.tuxfamily.org/1/#authors }
[S] Stable
[V] 1.0.5
[D] 3736741641 eigen-1.0.5.tar.gz http://download.tuxfamily.org/eigen/
#endif
#if xpkg == eigen2
[U] http://eigen.tuxfamily.org
[A] many ( see http://eigen.tuxfamily.org/ }
[S] Beta
[V] 2.0-beta1
[D] 2918473289 eigen-2.0-beta1.tar.bz2 http://download.tuxfamily.org/eigen/
#endif

+ 3
- 0
package/kde4/eigen/pkgmapper.in

@ -0,0 +1,3 @@
case "$pkg" in
eigen|eigen2) pkg=eigen ;;
esac

+ 1
- 0
package/kde4/eigen/preconfig.in

@ -0,0 +1 @@
pkgfork eigen eigen2

+ 46
- 0
package/public/cfitsio/cfitsio.desc

@ -0,0 +1,46 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/fitsio/fitsio.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] C and Fortran library for accessing FITS (Flexible Image Transport System)
[T] CFITSIO is a library of C and Fortran subroutines for reading and writing
[T] data files in FITS (Flexible Image Transport System) data format. CFITSIO
[T] provides simple high-level routines for reading and writing FITS files that
[T] insulate the programmer from the internal complexities of the FITS format.
[T] CFITSIO also provides many advanced features for manipulating and filtering
[T] the information in FITS files.
[U] http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/development
[L] OpenSource
[S] Stable
[V] 3.100
[P] X -----5---9 200.000
[D] 361611440 cfitsio3100.tar.gz ftp://heasarc.gsfc.nasa.gov/software/fitsio/c/

+ 45
- 0
package/public/dhcdbd/dhcdbd.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/dhcdbd/dhcdbd.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Red Hat DHCP D-BUS Daemon
[T] dhcdbd exists to:
[T] o provide D-BUS control of the ISC dhclient software,
[T] o store DHCP configuration parameters (options) persistently
[T] o providing access to DHCP options over D-BUS
[T] o notify applications of changes to DHCP IP interface configuration
[U] http://dcantrel.fedorapeople.org/dhcdbd/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/network
[L] GPL
[S] Stable
[V] 3.0
[P] X -----5---9 180.500
[D] 2954940361 dhcdbd-3.0.tar.bz2 http://dcantrel.fedorapeople.org/dhcdbd/

+ 45
- 0
package/public/facile/facile.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/facile/facile.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] a constraint programming library written in OCaml
[T] FaCiLe is a constraint programming library on integer and integer set
[T] finite domains written in OCaml. It offers all usual facilities to create
[T] and manipulate finite domain variables, arithmetic expressions and
[T] constraints (possibly non-linear), built-in global constraints (difference,
[T] cardinality, sorting etc.) and search and optimization goals.
[U] http://www.recherche.enac.fr/log/facile/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/development
[L] LGPL
[S] Stable
[V] 1.1
[P] X -----5---9 200.000
[D] 1171837834 facile-1.1.tar.gz http://www.recherche.enac.fr/log/facile/distrib/

+ 46
- 0
package/public/getfem++/getfem++.desc

@ -0,0 +1,46 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/getfem++/getfem++.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] a generic and efficient C++ library for finite element methods
[T] The Getfem++ project focuses on the development of a generic and efficient
[T] C++ library for finite element methods. The goal is to provide a library
[T] allowing the computation of any elementary matrix (even for mixed finite
[T] element methods) on the largest class of methods and elements, and for
[T] arbitrary dimension (i.e. not only 2D and 3D problems).
[U] http://home.gna.org/getfem/
[A] Yves Renard
[A] Julien Pommier
[M] The ROCK Linux Project
[C] extra/development extra/scientific extra/desktop/kde4
[L] LGPL
[S] Stable
[V] 3.1
[P] X -----5---9 170.000
[D] 2255951946 getfem++-3.1.tar.gz http://download.gna.org/getfem/stable/

+ 45
- 0
package/public/ggz-client-libs/ggz-client-libs.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/ggz-client-libs/ggz-client-libs.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] GGZ Gaming Zone core client
[T] GGZ Gaming Zone core client libraries provides the common procedures
[T] and utilities required to run the GGZ client and games. The routines
[T] are shared by other modules in order to ease coding and promote
[T] compatibility and stability.
[U] http://www.ggzgamingzone.org/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/development extra/game
[L] LGPL
[S] Beta
[V] 0.14.1
[P] X -----5---9 200.000
[D] 572863508 ggz-client-libs-0.0.14.1.tar.gz http://ftp.belnet.be/packages/ggzgamingzone/ggz/0.0.14.1/

+ 43
- 0
package/public/indilib/indilib.desc

@ -0,0 +1,43 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/indilib/indilib.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] an distributed interface control protocol for astronomical devices
[T] INDI is an instrument neutral distributed interface control protocol that
[T] aims to provide backend driver support and automation for a wide range of
[T] astronomical devices (telescopes, focusers, CCDs, etc.).
[U] http://indi.sourceforge.net/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/scientific extra/development
[L] LGPL
[S] Beta
[V] 0.5
[P] X -----5---9 201.000
[D] 4268851946 indilib-0.5.tar.gz http://ovh.dl.sourceforge.net/sourceforge/indi/

+ 19
- 0
package/public/kerberos5/kerberos5.conf

@ -0,0 +1,19 @@
# Don't build own version of compile_et and libcom_err.so
# if the ones from e2fsprogs are available.
if pkginstalled e2fsprogs ; then
var_append extraconfopt " " "--with-system-et"
var_append CFLAGS " " "-I$root/usr/include/et"
fi
srctar="krb5-$ver.tar.gz"
srcdir="krb5-$ver/src"
taropt="-xf"
hook_add prepare 5 "kerberos5_prepare"
kerberos5_prepare()
{
cd $archdir
tar xf krb5-$ver-signed.tar
}

+ 45
- 0
package/public/kerberos5/kerberos5.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/kerberos/kerberos.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] TODO: Short Information
[T] Kerberos is a network authentication protocol. It is designed to provide
[T] strong authentication for client/server applications by using secret-key
[T] cryptography. A free implementation of this protocol is available from the
[T] Massachusetts Institute of Technology. Kerberos is available in many
[T] commercial products as well.
[U] http://web.mit.edu/kerberos/www/
[A] Massachusetts Institute of Technology
[M] The ROCK Linux Project
[C] extra/development extra/security
[L] MIT
[S] Stable
[V] 1.6.3
[P] X -----5---9 200.000
[D] 3993897198 krb5-1.6.3-signed.tar http://web.mit.edu/kerberos/dist/krb5/1.6/

+ 45
- 0
package/public/libggz/libggz.desc

@ -0,0 +1,45 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/ggz-client-libs/ggz-client-libs.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] GGZ Gaming Zone core client
[T] GGZ Gaming Zone core client libraries provides the common procedures
[T] and utilities required to run the GGZ client and games. The routines
[T] are shared by other modules in order to ease coding and promote
[T] compatibility and stability.
[U] http://www.ggzgamingzone.org/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/development extra/game
[L] LGPL
[S] Beta
[V] 0.14.1
[P] X -----5---9 199.000
[D] 260877475 libggz-0.0.14.1.tar.gz http://ftp.belnet.be/packages/ggzgamingzone/ggz/0.0.14.1/

+ 42
- 0
package/public/libnl/libnl.desc

@ -0,0 +1,42 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/libnl/libnl.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] netlink library
[T] libnl is a library for applications dealing with netlink sockets. The
[T] library provides an interface for raw netlink messaging and various
[T] netlink family specific interfaces.
[U] http://people.suug.ch/~tgr/libnl/
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/development extra/network
[L] LGPL
[S] Stable
[V] 1.1
[P] X -----5---9 180.600
[D] 0 libnl-1.1.tar.gz http://people.suug.ch/~tgr/libnl/files/

+ 42
- 0
package/public/libnova/libnova.desc

@ -0,0 +1,42 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/libnova/libnova.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] a general purpose celestial mechanics, astrometry and astrodynamics library
[T] libnova is a general purpose, double precision, celestial mechanics,
[T] astrometry and astrodynamics library.
[U] http://libnova.sourceforge.net
[A] TODO: Author
[M] The ROCK Linux Project
[C] extra/scientific extra/development
[L] LGPL
[S] Beta
[V] 0.12.2
[P] X -----5---9 200.000
[D] 2391027549 libnova-0.12.2.tar.gz http://dl.sourceforge.net/libnova/

+ 44
- 0
package/public/rasqal/rasqal.desc

@ -0,0 +1,44 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/rasqal/rasqal.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] RDF Query Library
[T] Rasqal is a free software / Open Source C library that handles Resource
[T] Description Framework (RDF) query syntaxes, query construction and
[T] query execution returning result bindings. The supported query
[T] languages are SPARQL and RDQL.
[U] http://librdf.org/rasqal/
[A] { see AUTHORS file }
[M] The ROCK Linux Project
[C] extra/development
[L] LGPL
[S] Beta
[V] 0.9.16
[P] X -----5---9 157.120
[D] 2716599207 rasqal-0.9.16.tar.gz http://download.librdf.org/source/

+ 48
- 0
package/public/redland/redland.desc

@ -0,0 +1,48 @@
[COPY] --- ROCK-COPYRIGHT-NOTE-BEGIN ---
[COPY]
[COPY] This copyright note is auto-generated by ./scripts/Create-CopyPatch.
[COPY] Please add additional copyright information _after_ the line containing
[COPY] the ROCK-COPYRIGHT-NOTE-END tag. Otherwise it might get removed by
[COPY] the ./scripts/Create-CopyPatch script. Do not edit this copyright text!
[COPY]
[COPY] ROCK Linux: rock-src/package/public/redland/redland.desc
[COPY] ROCK Linux is Copyright (C) 1998 - 2008 Clifford Wolf
[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; either version 2 of the License, or
[COPY] (at your option) any later version. A copy of the GNU General Public
[COPY] License can be found at Documentation/COPYING.
[COPY]
[COPY] Many people helped and are helping developing ROCK Linux. Please
[COPY] have a look at http://www.rocklinux.org/ and the Documentation/TEAM
[COPY] file for details.
[COPY]
[COPY] --- ROCK-COPYRIGHT-NOTE-END ---
[I] Redland RDF Application Framework
[T] Redland is a library that provides a high-level interface for the
[T] Resource Description Framework (RDF) allowing the RDF graph to be
[T] parsed from XML, stored, queried and manipulated. Redland implements
[T] each of the RDF concepts in its own class via an object based API,
[T] reflected into the language APIs, currently C#, Java, Perl, PHP,
[T] Python, Ruby and Tcl. Several classes providing functionality such as
[T] for parsers, storage are built as modules that can be loaded at compile
[T] or run-time as required.
[U] http://librdf.org
[A] { see AUTHORS file }
[M] The ROCK Linux Project
[C] extra/development
[L] LGPL
[S] Stable
[V] 1.0.8
[P] X -----5---9 157.130
[D] 3715295480 redland-1.0.8.tar.gz http://download.librdf.org/source/

Loading…
Cancel
Save