47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Licensed under the GNU General Public License, version 3.
|
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
|
|
|
from pisi.actionsapi import shelltools
|
|
from pisi.actionsapi import autotools
|
|
from pisi.actionsapi import pisitools
|
|
from pisi.actionsapi import get
|
|
|
|
def setup():
|
|
autotools.configure("--enable-shadowgrp \
|
|
--without-selinux \
|
|
--without-audit \
|
|
--without-libcrack \
|
|
--with-libpam \
|
|
--with-sha-crypt \
|
|
--enable-nls \
|
|
--with-group-name-max-length=32 \
|
|
--disable-shared")
|
|
def build():
|
|
# Rebuild gmo catalogs
|
|
autotools.make("-C po update-gmo")
|
|
|
|
autotools.make()
|
|
|
|
def install():
|
|
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
|
|
|
pisitools.insinto("/etc/", "etc/login.access")
|
|
shelltools.chmod("%s/etc/login.access" % get.installDIR(), 0600)
|
|
|
|
pisitools.insinto("/etc/", "etc/limits")
|
|
shelltools.chmod("%s/etc/limits" % get.installDIR(), 0644)
|
|
|
|
# groups come from coreutils package
|
|
pisitools.remove("/usr/share/man/man1/groups.1")
|
|
pisitools.remove("/bin/groups")
|
|
|
|
# Conflicts with man-pages
|
|
pisitools.remove("/usr/share/man/man3/getspnam.3")
|
|
pisitools.remove("/usr/share/man/man5/passwd.5")
|
|
|
|
pisitools.dodoc("ChangeLog","README","NEWS")
|
|
|