# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-admin/syslog-ng/syslog-ng-1.4.17.ebuild,v 1.5 2003/02/13 05:31:24 vapier Exp $ DESCRIPTION="Syslog-ng is a syslog replacement with advanced filtering features" SRC_URI="http://www.balabit.hu/downloads/syslog-ng/1.4/${P}.tar.gz" HOMEPAGE="http://www.balabit.hu/en/products/syslog-ng/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~ppc ~sparc " IUSE="tcpd" DEPEND="=dev-libs/libol-0.2.23 sys-devel/flex tcpd? ( >=sys-apps/tcp-wrappers-7.6 )" src_compile() { local myconf use tcpd && myconf="--enable-tcp-wrapper" econf ${myconf} # configure script braindamage? # cd ${S}/src # mv Makefile Makefile.orig # use tcpd && ( sed -e "s|-lnsl|-lwrap|" Makefile.orig > Makefile || die "sed failure" ) # use tcpd || ( sed -e "s|-lnsl||" Makefile.orig > Makefile || die "sed failure" ) emake prefix=${D}/usr all || die "compile problem" } src_install() { einstall rm -rf ${D}/usr/share/man dodoc AUTHORS COPYING ChangeLog INSTALL NEWS PORTS README dodoc doc/{syslog-ng.conf.sample,syslog-ng.conf.demo,stresstest.sh} doman doc/{syslog-ng.8,syslog-ng.conf.5} dodoc doc/sgml/{syslog-ng.dvi,syslog-ng.html.tar.gz,syslog-ng.ps,syslog-ng.sgml,syslog-ng.txt} insinto /etc/syslog-ng doins ${FILESDIR}/syslog-ng.conf.sample exeinto /etc/init.d newexe ${FILESDIR}/syslog-ng.rc6 syslog-ng } pkg_postinst() { einfo "A sample configuration file can be found in /etc/syslog-ng." }