From 1fc1b54aab652514a941202cfcec28c8f5b3337f Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Wed, 24 Mar 2021 19:49:08 +0000 Subject: Import irc/catgirl from ports svn --- irc/catgirl/Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'irc/catgirl/Makefile') diff --git a/irc/catgirl/Makefile b/irc/catgirl/Makefile index 28babf4..3504d11 100644 --- a/irc/catgirl/Makefile +++ b/irc/catgirl/Makefile @@ -1,4 +1,4 @@ -# $FreeBSD$ +# $FreeBSD: head/irc/catgirl/Makefile 566195 2021-02-20 23:14:06Z linimon $ PORTNAME= catgirl DISTVERSION= 1.6 @@ -11,10 +11,7 @@ COMMENT= TLS-only terminal IRC client LICENSE= GPLv3+ LICENSE_FILE= ${WRKSRC}/LICENSE -LIB_DEPENDS= libtls.so:security/libretls - -USES= ncurses \ - pkgconfig +USES= compiler:c++11-lang ncurses pkgconfig ssl HAS_CONFIGURE= yes CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man @@ -22,7 +19,13 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --mandir=${MANPREFIX}/man PLIST_FILES= bin/catgirl \ man/man1/catgirl.1.gz +.include + post-install: ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/catgirl -.include +.if ${SSL_DEFAULT} == base || ${SSL_DEFAULT} == openssl +LIB_DEPENDS+= libtls.so:security/libretls +.endif + +.include -- cgit 1.4.1 ;follow=1'>commit diff
Commit message (Collapse)Author
2019-02-12Unify *up scripts into one up.shJune McEnroe
2019-02-12Use a proper fread-realloc loop in hiJune McEnroe
2019-02-12Don't match Rust raw strings inside other stringsJune McEnroe
2019-02-12Add Rust to hiJune McEnroe
This also fixes the block comment pattern to match /* **/ correctly.
2019-02-12Call setlocale in hiJune McEnroe
2019-02-11Install html with -CJune McEnroe
2019-02-10Avoid excessive tags in ttpreJune McEnroe
2019-02-10Generate html for binsJune McEnroe
2019-02-10Use italic for underline in nvim man modeJune McEnroe
This doesn't yet work in Terminal.app: <https://github.com/neovim/neovim/issues/9598>.
2019-02-10Add plain text "language" to hiJune McEnroe
2019-02-10Don't match DQ string inside SQ stringJune McEnroe
2019-02-10Skip only one character if a match fails due to parentJune McEnroe
Really it should skip forward until the parent changes, but this is simpler.
2019-02-10Remove pattend from hiJune McEnroe
2019-02-10Replace uses of pattend with newline patternsJune McEnroe
2019-02-10Add hi debug outputJune McEnroe
2019-02-10Actually do HTML &quot; escapingJune McEnroe
2019-02-10Set git commit.verboseJune McEnroe
2019-02-10Add back missing static keywordJune McEnroe