diff options
author | bapt <bapt@FreeBSD.org> | 2013-10-03 17:11:18 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2013-10-03 17:11:18 +0000 |
commit | a15ec37252bac9cb51b165628152d3f40f4b2b02 (patch) | |
tree | 8d69fdda4b0d95a58d8948ed455d3d807c9e68f8 /x11/i3status/Makefile | |
parent | d9b9905374a82f4d499b8664a7df4c191d880fab (diff) | |
download | FreeBSD-ports-a15ec37252bac9cb51b165628152d3f40f4b2b02.zip FreeBSD-ports-a15ec37252bac9cb51b165628152d3f40f4b2b02.tar.gz |
Use modern LIB_DEPENDS
Prefer pkg-plist over Makefile's pollution
Diffstat (limited to 'x11/i3status/Makefile')
-rw-r--r-- | x11/i3status/Makefile | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/x11/i3status/Makefile b/x11/i3status/Makefile index b127b92..8e6a70f 100644 --- a/x11/i3status/Makefile +++ b/x11/i3status/Makefile @@ -10,18 +10,14 @@ COMMENT= Small program for generating a status bar LICENSE= BSD -LIB_DEPENDS= confuse:${PORTSDIR}/devel/libconfuse \ - yajl:${PORTSDIR}/devel/yajl +LIB_DEPENDS= libconfuse.so:${PORTSDIR}/devel/libconfuse \ + libyajl.so:${PORTSDIR}/devel/yajl CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib USES= gmake USE_BZIP2= yes -PLIST_FILES= bin/i3status \ - etc/i3status.conf.sample \ - man/man1/i3status.1.gz - post-patch: @${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|g' ${WRKSRC}/i3status.c |