--- tinc-1.0.3.ebuild 2005-04-30 04:39:06.000000000 +1000 +++ tinc-1.0.4.ebuild 2005-11-13 18:44:45.000000000 +1100 @@ -2,6 +2,7 @@ # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/net-misc/tinc/tinc-1.0.3.ebuild,v 1.1 2005/04/29 18:39:06 warpzero Exp $ +inherit eutils DESCRIPTION="tinc is an easy to configure VPN implementation" HOMEPAGE="http://tinc.nl.linux.org/" @@ -14,17 +15,22 @@ DEPEND=">=dev-libs/openssl-0.9.7c virtual/linux-sources - >=dev-libs/lzo-1.08 + >=dev-libs/lzo-2 >=sys-libs/zlib-1.1.4-r2" +src_unpack() { + unpack ${A} + epatch ${FILESDIR}/${P}-lzo2.patch +} + src_compile() { - econf --enable-jumbograms || die + econf --enable-jumbograms --with-lzo-include=/usr/include/lzo || die emake || die } src_install() { make DESTDIR=${D} install || die - dodoc AUTHORS INSTALL NEWS README THANKS TODO + dodoc AUTHORS NEWS README THANKS TODO exeinto /etc/init.d ; newexe ${FILESDIR}/tincd tincd }