Search Criteria
Package Details: 389-admin 1.1.46-4
Git Clone URL: | https://aur.archlinux.org/389-admin.git (read-only, click to copy) |
---|---|
Package Base: | 389-admin |
Description: | 389 Administration Server HTTP agent |
Upstream URL: | http://directory.fedoraproject.org/ |
Licenses: | |
Submitter: | Aierk |
Maintainer: | ImNtReal |
Last Packager: | ImNtReal |
Votes: | 4 |
Popularity: | 0.000000 |
First Submitted: | 2010-02-01 02:11 |
Last Updated: | 2019-02-08 02:00 |
Latest Comments
a2h commented on 2020-02-07 23:26
Maybe we should include perl-mozldap as a dependency. Also 389-ds-base needs to be configured with --enable-perl. Otherwise setup-ds-admin.pl gives errors when it's run.
ImNtReal commented on 2019-04-17 12:37
@Thaodan, according to https://directory.fedoraproject.org/docs/389ds/administration/adminserver.html, "The main http functionality consists of the Apache module mod_admserv, and the TLS/SSL functionality is provided by the Apache module mod_nss."
Thaodan commented on 2019-04-17 10:14
why is mod_nss required?
xpixelz commented on 2015-05-23 22:32
Latest working PKGBUILD, admin-1.1.38 :
pkgname=389-admin
pkgver=1.1.38
pkgrel=1
pkgdesc="389 Administration Server HTTP agent"
arch=('i686' 'x86_64')
url="http://directory.fedoraproject.org/"
license=('GPL')
depends=('389-ds-base' '389-adminutil' 'mod_nss' 'perl-mozldap')
source=("http://www.port389.org/binaries/$pkgname-$pkgver.tar.bz2")
sha1sums=('52f43945a6786f83009e5745c98b2c24f42f2797')
build() {
cd $pkgname-$pkgver
[ "${CARCH}" == "x86_64" ] && export USE_64=1
msg2 "Running configure..."
./configure --disable-rpath \
--prefix=/usr \
--with-ldapsdk-inc=/usr/include/mozldap \
--with-ldapsdk-lib=/usr/lib/mozldap \
--sysconfdir=/etc \
--with-adminutil=/usr
msg2 "Running make..."
make || return 1
}
package() {
cd $pkgname-$pkgver
msg2 "Running make install..."
make install DESTDIR="$pkgdir" || return 1
mv "$pkgdir"/etc/rc.d/init.d/dirsrv-admin "$pkgdir"/etc/rc.d/dirsrv-admin
rm -rf "$pkgdir"/etc/rc.d/init.d
}