summaryrefslogtreecommitdiff
path: root/net-im/cli-msn/Makefile
diff options
context:
space:
mode:
authorIon-Mihai Tetcu <itetcu@FreeBSD.org>2006-06-06 17:47:19 +0000
committerIon-Mihai Tetcu <itetcu@FreeBSD.org>2006-06-06 17:47:19 +0000
commit6be9bd3ef5030993eeac69b91b53b9f0dec24667 (patch)
treec2a7dd1d6cc111485a8d757280a1ded9c317bd66 /net-im/cli-msn/Makefile
parent- Explain in pkg-message that this port is not the default linux_base, thus it (diff)
CLI-MSN is a UNIX Command Line implementation of the MSN Messenger Client,
coded purely in C with the ability to work in almost any UNIX/Linux variation. The desire for the creation of CLI-MSN came when little or no command-line based messengers were found to be available that implemented MSN Messenger. The client itself accepts commands based on that of an IRC clients nature (/cmd). Currently in the process of working out the file transfer. WWW: http://mor-pah.net/ PR: ports/95186 Submitted by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe> Approved by: lawrance (mentor, implicit)
Notes
Notes: svn path=/head/; revision=164624
Diffstat (limited to 'net-im/cli-msn/Makefile')
-rw-r--r--net-im/cli-msn/Makefile42
1 files changed, 42 insertions, 0 deletions
diff --git a/net-im/cli-msn/Makefile b/net-im/cli-msn/Makefile
new file mode 100644
index 000000000000..e239caae6b41
--- /dev/null
+++ b/net-im/cli-msn/Makefile
@@ -0,0 +1,42 @@
+# New ports collection makefile for: climsn
+# Date created: 2006-03-31
+# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
+#
+# $FreeBSD$
+#
+
+PORTNAME= msn
+PORTVERSION= 2.2
+CATEGORIES= net-im
+MASTER_SITES= http://mor-pah.net/code/
+PKGNAMEPREFIX= cli-
+DISTNAME= CLI-MSN-${PORTVERSION}
+
+MAINTAINER= acardenas@bsd.org.pe
+COMMENT= Command line msn messenger
+
+LIB_DEPENDS= curl.3:${PORTSDIR}/ftp/curl
+
+USE_GMAKE= yes
+GNU_CONFIGURE= yes
+CPPFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include ${PTHREAD_LIBS}
+LDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib
+CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
+CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
+
+SUB_FILES= pkg-message
+PLIST_FILES= bin/cli-msn \
+ share/${PKGNAMEPREFIX}${PORTNAME}/msn.conf \
+ share/${PKGNAMEPREFIX}${PORTNAME}/curl-ca-bundle.crt
+PLIST_DIRS= share/${PKGNAMEPREFIX}${PORTNAME}
+DATADIR= ${PREFIX}/share/${PKGNAMEPREFIX}${PORTNAME}
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/msn ${PREFIX}/bin/cli-msn
+
+post-install:
+ ${MKDIR} ${DATADIR}
+ ${INSTALL_DATA} ${WRKSRC}/msn.conf ${WRKSRC}/curl-ca-bundle.crt ${DATADIR}
+ @${CAT} ${PKGMESSAGE}
+
+.include <bsd.port.mk>