diff options
author | mezz <mezz@FreeBSD.org> | 2006-05-08 06:39:48 +0800 |
---|---|---|
committer | mezz <mezz@FreeBSD.org> | 2006-05-08 06:39:48 +0800 |
commit | e27f057cd7d1ffd33c03bba72df24584e6f4f5b0 (patch) | |
tree | af491f756e41c01661f8da34d039733280b95f00 /net | |
parent | 34549c15b0325097639133a659a51c88d08fe6e4 (diff) | |
download | freebsd-ports-gnome-e27f057cd7d1ffd33c03bba72df24584e6f4f5b0.tar.gz freebsd-ports-gnome-e27f057cd7d1ffd33c03bba72df24584e6f4f5b0.tar.zst freebsd-ports-gnome-e27f057cd7d1ffd33c03bba72df24584e6f4f5b0.zip |
Fix the find local of trickled.conf, the varible wasn't working that put
${prefix} in source so use --sysconfdir that will actually change from varible
to prefix path (/usr/local) in source. Bump the PORTREVISION.
# trickled: Skipping configuration file: ${prefix}/etc/trickled.conf
Diffstat (limited to 'net')
-rw-r--r-- | net/trickle/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/net/trickle/Makefile b/net/trickle/Makefile index 909c64f7f178..dd04ff91944a 100644 --- a/net/trickle/Makefile +++ b/net/trickle/Makefile @@ -7,7 +7,7 @@ PORTNAME= trickle PORTVERSION= 1.06 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= http://monkey.org/~marius/trickle/ @@ -19,7 +19,8 @@ LIB_DEPENDS= event-1.1a.1:${PORTSDIR}/devel/libevent GNU_CONFIGURE= yes INSTALLS_SHLIB= yes -CONFIGURE_ARGS+=--with-libevent=${LOCALBASE} +CONFIGURE_ARGS+=--with-libevent=${LOCALBASE} \ + --sysconfdir=${PREFIX}/etc CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ LIBS="-L${LOCALBASE}/lib" CONFIGURE_TARGET=--build=${MACHINE_ARCH}-portbld-freebsd${OSREL} |