blob: 654e95300cc673a62705f1df1c8779f41aaa95c0 (
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
|
# New ports collection makefile for: mlterm
# Date created: 9 December 2001
# Whom: MANTANI Nobutaka <nobutaka@nobutaka.com>
#
# $FreeBSD$
#
PORTNAME= mlterm
PORTVERSION= 2.2.0
CATEGORIES= x11
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= nobutaka@FreeBSD.org
USE_X_PREFIX= yes
USE_IMLIB= yes
USE_GTK= yes
USE_LIBTOOL= yes
CONFIGURE_ARGS= --enable-imlib
INSTALLS_SHLIB= yes
MAN1= mlterm.1
.include <bsd.port.pre.mk>
.if ${XFREE86_VERSION} == 3
PKGNAMESUFFIX= -noaa
.else
CONFIGURE_ARGS+= --enable-anti-alias
.endif
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/ja/mlterm
${INSTALL_DATA} ${WRKSRC}/doc/ja/README.ja ${PREFIX}/share/doc/ja/mlterm
.endif
.include <bsd.port.post.mk>
|