From 5564b943e0186f14ee10873f37aa15d6d99dea64 Mon Sep 17 00:00:00 2001 From: Tiziano Müller Date: Thu, 29 Jul 2010 10:01:12 +0000 Subject: Initial commit, ebuild written by me (bug #224983). Package-Manager: portage-2.2_rc67/cvs/Linux x86_64 --- net-nds/gosa-core/ChangeLog | 10 +++ net-nds/gosa-core/files/gosa.include | 36 ++++++++++ net-nds/gosa-core/gosa-core-2.6.10.ebuild | 105 ++++++++++++++++++++++++++++++ net-nds/gosa-core/metadata.xml | 12 ++++ 4 files changed, 163 insertions(+) create mode 100644 net-nds/gosa-core/ChangeLog create mode 100644 net-nds/gosa-core/files/gosa.include create mode 100644 net-nds/gosa-core/gosa-core-2.6.10.ebuild create mode 100644 net-nds/gosa-core/metadata.xml (limited to 'net-nds/gosa-core') diff --git a/net-nds/gosa-core/ChangeLog b/net-nds/gosa-core/ChangeLog new file mode 100644 index 000000000000..31c40f3322b1 --- /dev/null +++ b/net-nds/gosa-core/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-nds/gosa-core +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/gosa-core/ChangeLog,v 1.1 2010/07/29 09:58:28 dev-zero Exp $ + +*gosa-core-2.6.10 (29 Jul 2010) + + 29 Jul 2010; Tiziano Müller + +gosa-core-2.6.10.ebuild, +files/gosa.include, +metadata.xml: + Initial commit, ebuild written by me (bug #224983). + diff --git a/net-nds/gosa-core/files/gosa.include b/net-nds/gosa-core/files/gosa.include new file mode 100644 index 000000000000..dcd3434964a4 --- /dev/null +++ b/net-nds/gosa-core/files/gosa.include @@ -0,0 +1,36 @@ +Alias /gosa /usr/share/gosa/html + + + Options None + AllowOverride None + Order deny,allow + Allow from all + + + + + php_admin_flag engine on + php_admin_flag register_globals off + php_admin_flag allow_call_time_pass_reference off + php_admin_flag expose_php off + php_admin_flag zend.ze1_compatibility_mode off + php_admin_flag register_long_arrays off + php_admin_flag magic_quotes_gpc on + php_admin_value upload_tmp_dir /var/spool/gosa/ + php_admin_value session.cookie_lifetime 0 + include /etc/gosa/gosa.secrets + + + + + PHP_Fix_Pathinfo_Enable 1 + + Options +ExecCGI + AddHandler fcgid-script .php + FCGIWrapper /var/www/php-fcgi/php-fcgi-starter .php + include /etc/gosa/gosa.secrets + + + + +# vim: ts=4 filetype=apache diff --git a/net-nds/gosa-core/gosa-core-2.6.10.ebuild b/net-nds/gosa-core/gosa-core-2.6.10.ebuild new file mode 100644 index 000000000000..54dd2ede9c5a --- /dev/null +++ b/net-nds/gosa-core/gosa-core-2.6.10.ebuild @@ -0,0 +1,105 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-nds/gosa-core/gosa-core-2.6.10.ebuild,v 1.1 2010/07/29 09:58:28 dev-zero Exp $ + +EAPI=3 + +inherit eutils + +DESCRIPTION="LDAP administration frontend for user administration." +HOMEPAGE="https://oss.gonicus.de/labs/gosa/wiki/WikiStart." +SRC_URI="ftp://oss.gonicus.de/pub/gosa/${P}.tar.bz2 + http://oss.gonicus.de/pub/gosa/${P}.tar.bz2 + ftp://oss.gonicus.de/pub/gosa/archive/${P}.tar.bz2 + http://oss.gonicus.de/pub/gosa/archive/${P}.tar.bz2 " + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64" +IUSE="" + +DEPEND="dev-lang/php[iconv,imap,ldap,mysql,session,zip] + sys-devel/gettext" +RDEPEND="${DEPEND} + virtual/httpd-php + dev-perl/Crypt-SmbHash" + +src_prepare() { + epatch \ + "${S}/redhat/02_fix_class_mapping.patch" \ + "${S}/redhat/03_fix_locale_location.patch" \ + "${S}/redhat/04_fix_online_help_location.patch" + sed -i \ + -e 's|../contrib|/usr/share/gosa/template|' \ + include/functions.inc || die "sed failed" +} + +src_install() { + insinto /usr/share/gosa + doins -r doc html ihtml include locale plugins setup + + insinto /usr/share/gosa/template + doins contrib/gosa.conf + + dosbin \ + update-gosa \ + bin/gosa-encrypt-passwords + + dobin \ + update-locale \ + update-online-help \ + update-pdf-help \ + dh-make-gosa \ + contrib/gosa + + insinto /etc/gosa + doins \ + contrib/shells \ + contrib/encodings \ + contrib/desktoprc + touch "${D}/etc/gosa/gosa.secrets" + + doicon debian/*.xpm + domenu debian/gosa-desktop.desktop + + doman *.1 contrib/*.1 contrib/*.5 + + dodoc contrib/openldap/slapd.conf + insinto /etc/openldap/schema/gosa + doins contrib/openldap/*.schema + + insinto /etc/apache2/vhosts.d + doins "${FILESDIR}/gosa.include" + + dodoc AUTHORS Changelog FAQ README README.safemode + + keepdir /etc/gosa + keepdir /var/spool/gosa + keepdir /var/cache/gosa +} + +pkg_prerm() { + ebegin "Flushing the class and locale cache" + rm -r "${EROOT}"var/cache/gosa/* + eend $? + ebegin "Clearing the spool directory" + rm -r "${EROOT}"var/spool/gosa/* + eend $? +} + +pkg_postinst() { + ebegin "Generating class cache and locales" + "${EROOT}"usr/sbin/update-gosa + eend $? + + elog "Please make sure that the web server you are going to use has" + elog "read-write access to ${EROOT}var/spool/gosa" + + elog "For Apache there is the gosa.include file in ${EROOT}etc/apache/vhosts.d." + elog "You can either use it as a template for your configuration or directly" + elog "include it in your apache configuration." + + elog "GOsa requires some objectclasses and attributes to be present in the" + elog "directory. A sample configuration for slapd.conf can be found here:" + elog " ${EROOR}usr/share/doc/${PF}/slapd.conf[.gz]" +} diff --git a/net-nds/gosa-core/metadata.xml b/net-nds/gosa-core/metadata.xml new file mode 100644 index 000000000000..0c6ccc026e3b --- /dev/null +++ b/net-nds/gosa-core/metadata.xml @@ -0,0 +1,12 @@ + + + + no-herd + + dev-zero@gentoo.org + Tiziano Müller + + + http://oss.gonicus.de/pub/gosa/Changelog + + -- cgit v1.2.3-65-gdbad