2008-10-08 07:03:47 +02:00
|
|
|
# Template build file for 'sudo'.
|
|
|
|
pkgname=sudo
|
2012-05-18 17:50:05 +02:00
|
|
|
version=1.8.5p1
|
2008-10-28 23:57:52 +01:00
|
|
|
distfiles="http://www.courtesan.com/sudo/dist/$pkgname-$version.tar.gz"
|
2011-10-24 14:14:47 +02:00
|
|
|
build_style=gnu-configure
|
2010-01-16 01:31:06 +01:00
|
|
|
configure_args="--with-ignore-dot -with-all-insults --with-env-editor
|
2011-03-03 09:57:37 +01:00
|
|
|
--enable-shell-sets-home --enable-noargs-shell --without-sendmail
|
|
|
|
--disable-root-sudo --with-logfac=auth --disable-root-mailer"
|
2008-10-08 07:03:47 +02:00
|
|
|
short_desc="Allow others to run commands as root"
|
|
|
|
maintainer="Juan RP <xtraeme@gmail.com>"
|
2011-06-20 12:19:37 +02:00
|
|
|
homepage="http://www.gratisoft.us/sudo/"
|
|
|
|
license="ISC, BSD, zlib"
|
2012-05-18 17:50:05 +02:00
|
|
|
checksum=e99408d1f3815877fb3a2ec23b8b67ebca32425c7034cce30babae306844d231
|
2008-10-08 07:03:47 +02:00
|
|
|
long_desc="
|
|
|
|
Sudo is a program designed to allow a sysadmin to give limited root
|
|
|
|
privileges to users and log root activity. The basic philosophy is to
|
|
|
|
give as few privileges as possible but still allow people to get their
|
|
|
|
work done."
|
2008-12-16 04:23:56 +01:00
|
|
|
|
|
|
|
conf_files="/etc/pam.d/sudo /etc/sudoers"
|
2010-01-16 01:31:06 +01:00
|
|
|
nostrip=yes
|
2009-02-25 06:15:20 +01:00
|
|
|
|
2012-01-22 21:13:17 +01:00
|
|
|
# Build PIE binaries by default.
|
|
|
|
CFLAGS="-fPIE"
|
|
|
|
LDFLAGS="-pie"
|
2012-01-30 20:13:00 +01:00
|
|
|
CPPFLAGS="-D_FORTIFY_SOURCE=2"
|
2012-01-22 21:13:17 +01:00
|
|
|
|
2010-10-28 04:23:01 +02:00
|
|
|
Add_dependency build zlib-devel
|
2010-01-16 01:31:06 +01:00
|
|
|
Add_dependency build pam-devel
|
2008-12-16 04:23:56 +01:00
|
|
|
|
2012-01-18 04:45:07 +01:00
|
|
|
post_install() {
|
2011-08-18 15:56:45 +02:00
|
|
|
vinstall ${FILESDIR}/sudo.pam 644 etc/pam.d sudo
|
2012-01-30 09:19:39 +01:00
|
|
|
vmove usr/share/doc/sudo/LICENSE usr/share/licenses/sudo
|
|
|
|
# remove unused stuff.
|
|
|
|
rm -rf ${DESTDIR}/usr/share/doc
|
|
|
|
rm -rf ${DESTDIR}/usr/include
|
2008-12-16 04:23:56 +01:00
|
|
|
}
|