| 123456789101112131415161718192021222324252627282930313233 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(TOPDIR)/rules.mkPKG_NAME:=		sudoPKG_VERSION:=		1.7.4p4PKG_RELEASE:=		1PKG_MD5SUM:=		55d9906535d70a1de347cd3d3550ee87PKG_DESCR:=		su doPKG_SECTION:=		miscPKG_URL:=		http://www.courtesan.com/sudo/PKG_SITES:=		http://www.courtesan.com/sudo/dist/include $(TOPDIR)/mk/package.mk$(eval $(call PKG_template,SUDO,$(PKG_NAME),$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))CONFIGURE_ARGS+=	--without-pam \			--with-timedir=/var/runpost-install:	$(INSTALL_DIR) $(IDIR_SUDO)/usr/bin	$(INSTALL_DIR) $(IDIR_SUDO)/usr/sbin	$(INSTALL_DIR) $(IDIR_SUDO)/etc	$(INSTALL_DATA) ./files/sudoers $(IDIR_SUDO)/etc	chmod 440 $(IDIR_SUDO)/etc/sudoers	$(INSTALL_BIN) $(WRKINST)/usr/bin/sudo \		$(IDIR_SUDO)/usr/bin	$(INSTALL_BIN) $(WRKINST)/usr/sbin/visudo \		$(IDIR_SUDO)/usr/sbininclude ${TOPDIR}/mk/pkg-bottom.mk
 |