diff options
author | ehaupt <ehaupt@FreeBSD.org> | 2011-08-11 00:24:40 +0800 |
---|---|---|
committer | ehaupt <ehaupt@FreeBSD.org> | 2011-08-11 00:24:40 +0800 |
commit | b9bbbbda29d6207ff38a9f1aef1d1ca6ae1c433e (patch) | |
tree | 916f02ccb2fb1cfed4f20b847b70687dabfd8a0f /irc | |
parent | 793e5414b434d709cb327f911939c554e29a8cca (diff) | |
download | freebsd-ports-graphics-b9bbbbda29d6207ff38a9f1aef1d1ca6ae1c433e.tar.gz freebsd-ports-graphics-b9bbbbda29d6207ff38a9f1aef1d1ca6ae1c433e.tar.zst freebsd-ports-graphics-b9bbbbda29d6207ff38a9f1aef1d1ca6ae1c433e.zip |
- Fix MASTER_SITES
- Add LICENSE
- Add MAKE_JOBS_SAFE
PR: 159482
Submitted by: KATO Tsuguru <tkato432@yahoo.com>
Diffstat (limited to 'irc')
-rw-r--r-- | irc/lostirc/Makefile | 16 |
1 files changed, 10 insertions, 6 deletions
diff --git a/irc/lostirc/Makefile b/irc/lostirc/Makefile index 3eebbe65b58..4a86b2c2d66 100644 --- a/irc/lostirc/Makefile +++ b/irc/lostirc/Makefile @@ -9,23 +9,27 @@ PORTNAME= lostirc PORTVERSION= 0.4.6 PORTREVISION= 8 CATEGORIES= irc -MASTER_SITES= SF \ - http://demian.dyndns.org/src/ - +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A simple and minimal IRC client for X +LICENSE= GPLv2 GPLv3 +LICENSE_COMB= dual + LIB_DEPENDS= gtkmm-2.4.1:${PORTSDIR}/x11-toolkits/gtkmm24 -USE_GNOME= gnomehack gnomeprefix gnometarget +USE_GNOME= gnomehack gnomeprefix GNU_CONFIGURE= yes -CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \ - LDFLAGS="-L${LOCALBASE}/lib" +CONFIGURE_ENV= LDFLAGS="${LDFLAGS}" CONFIGURE_ARGS= --disable-kde +MAKE_JOBS_SAFE= yes MAN1= lostirc.1 +CPPFLAGS= -I${LOCALBASE}/include +LDFLAGS= -L${LOCALBASE}/lib + post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |