aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
blob: ed650c3f69051bf1f05abab6bf7e3f3d7a020cbb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*

# Runtime data
pids
*.pid
*.seed
*.pid.lock

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# nyc test coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt

# Bower dependency directory (https://bower.io/)
bower_components

# node-waf configuration
.lock-wscript

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release

# Dependency directories
node_modules/
jspm_packages/

# Typescript v1 declaration files
typings/

# Optional npm cache directory
.npm

# Optional eslint cache
.eslintcache

# Optional REPL history
.node_repl_history

# Output of 'npm pack'
*.tgz

# Yarn Integrity file
.yarn-integrity

# dotenv environment variables file
.env

# built library using in commonjs module syntax
lib
# built library using es6 module syntax to enable webpack and rollup tree shaking
lib-esm
# UMD bundles that export the global variable
_bundles
358bc10'>diffstats
path: root/net-im/meanwhile-gaim/Makefile
blob: a65cab676f691bb860921aa8ccdf98463ab74e65 (plain) (tree)
1
2
3
4
5
6
7
8
9







                                                      
                     
                 


                                          

                                                          



                                                        
                                                                     




                                                     


                                                                        

                                            




















                                                                                                                           
                      
# New ports collection makefile for:    meanwhile-gaim
# Date created:     24 June 2004
# Whom:         marcus@FreeBSD.org
#
# $FreeBSD$
#

PORTNAME=   meanwhile
PORTVERSION=    1.2.5
PORTREVISION=   1
CATEGORIES= net
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
PKGNAMEPREFIX=  gaim-
DISTNAME=   ${PKGNAMEPREFIX}${PORTNAME}-${PORTVERSION}

MAINTAINER= marcus@FreeBSD.org
COMMENT=    Provides Lotus Sametime support for Gaim

BUILD_DEPENDS=  ${X11BASE}/include/gaim/config.h:${PORTSDIR}/net/gaim
LIB_DEPENDS=    meanwhile.0:${PORTSDIR}/net/meanwhile
RUN_DEPENDS=    gaim:${PORTSDIR}/net/gaim

USE_X_PREFIX=   yes
USE_GMAKE=  yes
USE_GNOME=  gnomeprefix gnomehack gtk20
USE_LIBTOOL_VER=15
CONFIGURE_ENV=  CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
        LDFLAGS="-L${LOCALBASE}/lib"

.if defined(WITH_MW_HOST)
CONFIGURE_ARGS+=    --with-host=${WITH_MW_HOST}
.endif

.if defined(WITH_MW_PORT)
CONFIGURE_ARGS+=    --with-port=${WITH_MW_PORT}
.endif

.if defined(WITH_MW_CLIENT)
CONFIGURE_ARGS+=    --with-client=${WITH_MW_CLIENT}
.endif

pre-everything::
    @${ECHO_MSG} ""
    @${ECHO_MSG} "You may use the following build options:"
    @${ECHO_MSG} ""
    @${ECHO_MSG} "  WITH_MW_HOST=host   Define the default Sametime community host server"
    @${ECHO_MSG} "  WITH_MW_PORT=port   Define the default Sametime community port (default: 1533)"
    @${ECHO_MSG} "  WITH_MW_CLIENT=client   Define the default SAmetime client identifier (default: mwLogin_MEANWHILE)"
    @${ECHO_MSG} ""

.include <bsd.port.mk>