blob: 9875f972e08e0c23af72da8e1075d977e0d0469e (
plain)
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
|
# Ports collection makefile for: stardict2
# Date created: 13 April 2003
# Whom: Shen Chuan-Hsing <statue@freebsd.sinica.edu.tw>
#
# $FreeBSD$
#
PORTNAME= stardict
PORTVERSION= 2.2.1
CATEGORIES= chinese textproc
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
ftp://freebsd.sinica.edu.tw/pub/statue/stardict2/
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTFILES= stardict-${PORTVERSION}.tar.bz2 \
stardict-cdict-big5-2.1.0.tar.bz2 \
stardict-cedict-big5-2.1.0.tar.bz2 \
stardict-xdict-big5-2.1.0.tar.bz2 \
stardict-xdict-ce-big5-2.1.0.tar.bz2
MAINTAINER= statue@freebsd.sinica.edu.tw
COMMENT= English-Chinese dictionary
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LIBS="-L${LOCALBASE}/lib"
USE_GMAKE= yes
USE_X_PREFIX= yes
USE_BZIP2= yes
USE_GNOME= libgnome libgnomeui libbonobo bonoboactivation gconf2
MAN1= stardict.1
post-install:
${MKDIR} ${PREFIX}/share/stardict/dic/
${INSTALL_DATA} ${WRKDIR}/stardict-cdict-big5-2.1.0/* ${PREFIX}/share/stardict/dic/
${INSTALL_DATA} ${WRKDIR}/stardict-cedict-big5-2.1.0/* ${PREFIX}/share/stardict/dic/
${INSTALL_DATA} ${WRKDIR}/stardict-xdict-big5-2.1.0/* ${PREFIX}/share/stardict/dic/
${INSTALL_DATA} ${WRKDIR}/stardict-xdict-ce-big5-2.1.0/* ${PREFIX}/share/stardict/dic/
.include <bsd.port.mk>
|