View | Details | Raw Unified | Return to bug 185556 | Differences between
and this patch

Collapse All | Expand All

(-)b/audio/timidity/Makefile (-1 / +1 lines)
Lines 9-15 MASTER_SITES= http://www.onicos.com/staff/iz/timidity/dist/:timidity \ Link Here
9
DISTFILES=	${TIINS}:tiins ${DISTNAME}.tar.gz:timidity
9
DISTFILES=	${TIINS}:tiins ${DISTNAME}.tar.gz:timidity
10
EXTRACT_ONLY=	${DISTNAME}.tar.gz
10
EXTRACT_ONLY=	${DISTNAME}.tar.gz
11
11
12
MAINTAINER=	kevinz5000@gmail.com
12
MAINTAINER=	ports@FreeBSD.org
13
COMMENT=	MIDI to PCM software synthesizer
13
COMMENT=	MIDI to PCM software synthesizer
14
14
15
CONFLICTS=	timidity++-2.13.*
15
CONFLICTS=	timidity++-2.13.*
(-)b/cad/gspiceui/Makefile (-12 / +11 lines)
Lines 12-17 MAINTAINER= kevinz5000@gmail.com Link Here
12
COMMENT=	GUI frontend to gnucap and ngspice circuit simulators
12
COMMENT=	GUI frontend to gnucap and ngspice circuit simulators
13
13
14
LICENSE=	GPLv2
14
LICENSE=	GPLv2
15
LICENSE_FILE=	${WRKSRC}/License
15
16
16
RUN_DEPENDS=	# none if no options are set
17
RUN_DEPENDS=	# none if no options are set
17
18
Lines 27-45 OPTIONS_DEFAULT= NGSPICE Link Here
27
28
28
USE_WX=		2.6+
29
USE_WX=		2.6+
29
WX_UNICODE=	yes
30
WX_UNICODE=	yes
30
USE_GCC=	yes
31
USES=		gmake
31
USE_GMAKE=	yes
32
32
33
DESKTOP_ENTRIES=	"GSpiceUI" "Circuit Simulator GUI" \
33
DESKTOP_ENTRIES=	"GSpiceUI" "Circuit Simulator GUI" \
34
			"${PREFIX}/share/pixmaps/gspiceui-48x48.xpm" \
34
			"${PREFIX}/share/pixmaps/gspiceui-48x48.xpm" \
35
			"gspiceui" "Science;Electronics;" false
35
			"gspiceui" "Science;Electronics;" false
36
36
37
MAN1=		gspiceui.1
38
PORTDOCS=	*
37
PORTDOCS=	*
39
PORTEXAMPLES=	*
38
PORTEXAMPLES=	*
40
PLIST_FILES=	bin/gspiceui share/pixmaps/gspiceui-48x48.xpm
39
PLIST_FILES=	bin/gspiceui share/pixmaps/gspiceui-48x48.xpm \
40
		man/man1/gspiceui.1.gz
41
41
42
NO_STAGE=	yes
43
.include <bsd.port.options.mk>
42
.include <bsd.port.options.mk>
44
43
45
.if ${PORT_OPTIONS:MGNUCAP}
44
.if ${PORT_OPTIONS:MGNUCAP}
Lines 61-81 post-patch: Link Here
61
		${WRKSRC}/src/main/HelpTasks.cpp
60
		${WRKSRC}/src/main/HelpTasks.cpp
62
61
63
do-install:
62
do-install:
64
	${INSTALL_PROGRAM} ${WRKSRC}/bin/gspiceui ${PREFIX}/bin
63
	${INSTALL_PROGRAM} ${WRKSRC}/bin/gspiceui ${STAGEDIR}${PREFIX}/bin
65
	${INSTALL_DATA} ${WRKSRC}/src/icons/gspiceui-48x48.xpm \
64
	${INSTALL_DATA} ${WRKSRC}/src/icons/gspiceui-48x48.xpm \
66
	    ${PREFIX}/share/pixmaps
65
	    ${STAGEDIR}${PREFIX}/share/pixmaps
67
	${INSTALL_MAN} ${WRKSRC}/gspiceui.1 ${MANPREFIX}/man/man1
66
	${INSTALL_MAN} ${WRKSRC}/gspiceui.1 ${STAGEDIR}${MANPREFIX}/man/man1
68
.if ${PORT_OPTIONS:MDOCS}
67
.if ${PORT_OPTIONS:MDOCS}
69
	@${MKDIR} ${DOCSDIR}
68
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
70
.for dir in html
69
.for dir in html
71
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${DOCSDIR} \
70
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${DOCSDIR} \
72
		"! -name Makefile")
71
		"! -name Makefile")
73
.endfor
72
.endfor
74
.endif
73
.endif
75
.if ${PORT_OPTIONS:MEXAMPLES}
74
.if ${PORT_OPTIONS:MEXAMPLES}
76
	@${MKDIR} ${EXAMPLESDIR}
75
	@${MKDIR} ${STAGEDIR}${EXAMPLESDIR}
77
.for dir in lib sch
76
.for dir in lib sch
78
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${EXAMPLESDIR} \
77
	@(cd ${WRKSRC} && ${COPYTREE_SHARE} ${dir} ${STAGEDIR}${EXAMPLESDIR} \
79
		"! -name Makefile")
78
		"! -name Makefile")
80
.endfor
79
.endfor
81
.endif
80
.endif
(-)b/cad/ngspice_rework/Makefile (-8 / +6 lines)
Lines 10-25 DISTNAME= ngspice-${PORTVERSION} Link Here
10
MAINTAINER=	kevinz5000@gmail.com
10
MAINTAINER=	kevinz5000@gmail.com
11
COMMENT=	Mixed-signal circuit simulator derived from Spice and Cider
11
COMMENT=	Mixed-signal circuit simulator derived from Spice and Cider
12
12
13
OPTIONS_DEFINE=	DEBUG
13
LICENSE_FILE=	${WRKSRC}/COPYING
14
14
15
GNU_CONFIGURE=	yes
15
GNU_CONFIGURE=	yes
16
USE_GMAKE=	yes
16
USES=		gmake
17
17
18
NO_STAGE=	yes
18
CONFIGURE_ARGS+=	--enable-xspice --with-readline=yes
19
.include <bsd.port.options.mk>
19
20
OPTIONS_DEFINE=	DEBUG
20
21
21
CONFIGURE_ARGS+=--enable-xspice \
22
.include <bsd.port.options.mk>
22
		--with-readline=yes
23
23
24
.if ${PORT_OPTIONS:MDEBUG}
24
.if ${PORT_OPTIONS:MDEBUG}
25
CONFIGURE_ARGS+=	--enable-debug
25
CONFIGURE_ARGS+=	--enable-debug
Lines 27-32 CONFIGURE_ARGS+= --enable-debug Link Here
27
CONFIGURE_ARGS+=	--disable-debug
27
CONFIGURE_ARGS+=	--disable-debug
28
.endif
28
.endif
29
29
30
MAN1=		ngspice.1 ngnutmeg.1 ngsconvert.1 ngmultidec.1
31
32
.include <bsd.port.mk>
30
.include <bsd.port.mk>
(-)b/cad/ngspice_rework/pkg-plist (-31 / +35 lines)
Lines 1-4 Link Here
1
share/ngspice/include/ngspice/tclspice.h
1
bin/cmpp
2
bin/ngmakeidx
3
bin/ngmultidec
4
bin/ngnutmeg
5
bin/ngproc2mod
6
bin/ngsconvert
7
bin/ngspice
8
lib/ngspice/analog.cm
9
lib/ngspice/digital.cm
10
lib/ngspice/spice2poly.cm
11
lib/ngspice/xtradev.cm
12
lib/ngspice/xtraevt.cm
13
man/man1/ngmultidec.1.gz
14
man/man1/ngnutmeg.1.gz
15
man/man1/ngsconvert.1.gz
16
man/man1/ngspice.1.gz
17
share/ngspice/dlmain.c
18
share/ngspice/helpdir/ngspice.idx
19
share/ngspice/helpdir/ngspice.txt
20
share/ngspice/include/ngspice/1-f-code.h
21
share/ngspice/include/ngspice/FastNorm3.h
2
share/ngspice/include/ngspice/acdefs.h
22
share/ngspice/include/ngspice/acdefs.h
3
share/ngspice/include/ngspice/bdrydefs.h
23
share/ngspice/include/ngspice/bdrydefs.h
4
share/ngspice/include/ngspice/bool.h
24
share/ngspice/include/ngspice/bool.h
Lines 7-18 share/ngspice/include/ngspice/ciderinp.h Link Here
7
share/ngspice/include/ngspice/cidersupt.h
27
share/ngspice/include/ngspice/cidersupt.h
8
share/ngspice/include/ngspice/cktdefs.h
28
share/ngspice/include/ngspice/cktdefs.h
9
share/ngspice/include/ngspice/cluster.h
29
share/ngspice/include/ngspice/cluster.h
10
share/ngspice/include/ngspice/cmconstants.h
11
share/ngspice/include/ngspice/cm.h
30
share/ngspice/include/ngspice/cm.h
31
share/ngspice/include/ngspice/cmconstants.h
12
share/ngspice/include/ngspice/cmproto.h
32
share/ngspice/include/ngspice/cmproto.h
13
share/ngspice/include/ngspice/cmtypes.h
33
share/ngspice/include/ngspice/cmtypes.h
14
share/ngspice/include/ngspice/compatmode.h
34
share/ngspice/include/ngspice/compatmode.h
15
share/ngspice/include/ngspice/complex.h
35
share/ngspice/include/ngspice/complex.h
36
share/ngspice/include/ngspice/config.h
16
share/ngspice/include/ngspice/const.h
37
share/ngspice/include/ngspice/const.h
17
share/ngspice/include/ngspice/contdefs.h
38
share/ngspice/include/ngspice/contdefs.h
18
share/ngspice/include/ngspice/cpdefs.h
39
share/ngspice/include/ngspice/cpdefs.h
Lines 32-45 share/ngspice/include/ngspice/enh.h Link Here
32
share/ngspice/include/ngspice/evt.h
53
share/ngspice/include/ngspice/evt.h
33
share/ngspice/include/ngspice/evtproto.h
54
share/ngspice/include/ngspice/evtproto.h
34
share/ngspice/include/ngspice/evtudn.h
55
share/ngspice/include/ngspice/evtudn.h
56
share/ngspice/include/ngspice/fftext.h
35
share/ngspice/include/ngspice/ftedbgra.h
57
share/ngspice/include/ngspice/ftedbgra.h
36
share/ngspice/include/ngspice/ftedebug.h
58
share/ngspice/include/ngspice/ftedebug.h
37
share/ngspice/include/ngspice/ftedefs.h
59
share/ngspice/include/ngspice/ftedefs.h
38
share/ngspice/include/ngspice/fteoptdefs.h
39
share/ngspice/include/ngspice/ftedev.h
60
share/ngspice/include/ngspice/ftedev.h
40
share/ngspice/include/ngspice/fteext.h
61
share/ngspice/include/ngspice/fteext.h
41
share/ngspice/include/ngspice/fteinp.h
62
share/ngspice/include/ngspice/fteinp.h
42
share/ngspice/include/ngspice/fteinput.h
63
share/ngspice/include/ngspice/fteinput.h
64
share/ngspice/include/ngspice/fteoptdefs.h
43
share/ngspice/include/ngspice/fteparse.h
65
share/ngspice/include/ngspice/fteparse.h
44
share/ngspice/include/ngspice/gendefs.h
66
share/ngspice/include/ngspice/gendefs.h
45
share/ngspice/include/ngspice/gendev.h
67
share/ngspice/include/ngspice/gendev.h
Lines 64-72 share/ngspice/include/ngspice/memory.h Link Here
64
share/ngspice/include/ngspice/meshdefs.h
86
share/ngspice/include/ngspice/meshdefs.h
65
share/ngspice/include/ngspice/meshext.h
87
share/ngspice/include/ngspice/meshext.h
66
share/ngspice/include/ngspice/methdefs.h
88
share/ngspice/include/ngspice/methdefs.h
89
share/ngspice/include/ngspice/mif.h
67
share/ngspice/include/ngspice/mifcmdat.h
90
share/ngspice/include/ngspice/mifcmdat.h
68
share/ngspice/include/ngspice/mifdefs.h
91
share/ngspice/include/ngspice/mifdefs.h
69
share/ngspice/include/ngspice/mif.h
70
share/ngspice/include/ngspice/mifparse.h
92
share/ngspice/include/ngspice/mifparse.h
71
share/ngspice/include/ngspice/mifproto.h
93
share/ngspice/include/ngspice/mifproto.h
72
share/ngspice/include/ngspice/miftypes.h
94
share/ngspice/include/ngspice/miftypes.h
Lines 102-107 share/ngspice/include/ngspice/spmatrix.h Link Here
102
share/ngspice/include/ngspice/stringutil.h
124
share/ngspice/include/ngspice/stringutil.h
103
share/ngspice/include/ngspice/suffix.h
125
share/ngspice/include/ngspice/suffix.h
104
share/ngspice/include/ngspice/swec.h
126
share/ngspice/include/ngspice/swec.h
127
share/ngspice/include/ngspice/tclspice.h
105
share/ngspice/include/ngspice/tfdefs.h
128
share/ngspice/include/ngspice/tfdefs.h
106
share/ngspice/include/ngspice/trandefs.h
129
share/ngspice/include/ngspice/trandefs.h
107
share/ngspice/include/ngspice/trcvdefs.h
130
share/ngspice/include/ngspice/trcvdefs.h
Lines 109-142 share/ngspice/include/ngspice/tskdefs.h Link Here
109
share/ngspice/include/ngspice/twodev.h
132
share/ngspice/include/ngspice/twodev.h
110
share/ngspice/include/ngspice/twomesh.h
133
share/ngspice/include/ngspice/twomesh.h
111
share/ngspice/include/ngspice/typedefs.h
134
share/ngspice/include/ngspice/typedefs.h
112
share/ngspice/include/ngspice/wordlist.h
113
share/ngspice/include/ngspice/1-f-code.h
114
share/ngspice/include/ngspice/FastNorm3.h
115
share/ngspice/include/ngspice/fftext.h
116
share/ngspice/include/ngspice/wallace.h
135
share/ngspice/include/ngspice/wallace.h
136
share/ngspice/include/ngspice/wordlist.h
117
share/ngspice/include/ngspice/wstdio.h
137
share/ngspice/include/ngspice/wstdio.h
118
share/ngspice/include/ngspice/config.h
119
share/ngspice/dlmain.c
120
share/ngspice/helpdir/ngspice.txt
121
share/ngspice/helpdir/ngspice.idx
122
share/ngspice/scripts/spinit
123
share/ngspice/scripts/setplot
138
share/ngspice/scripts/setplot
124
share/ngspice/scripts/spectrum
139
share/ngspice/scripts/spectrum
125
bin/cmpp
140
share/ngspice/scripts/spinit
126
bin/ngspice
141
@dirrmtry share/ngspice/scripts
127
bin/ngnutmeg
142
@dirrmtry share/ngspice/include/ngspice
128
bin/ngsconvert
143
@dirrmtry share/ngspice/include
129
bin/ngproc2mod
144
@dirrmtry share/ngspice/helpdir
130
bin/ngmultidec
145
@dirrmtry share/ngspice
131
bin/ngmakeidx
146
@dirrmtry lib/ngspice
132
lib/ngspice/spice2poly.cm
133
lib/ngspice/digital.cm
134
lib/ngspice/analog.cm
135
lib/ngspice/xtradev.cm
136
lib/ngspice/xtraevt.cm
137
@dirrm lib/ngspice
138
@dirrm share/ngspice/scripts
139
@dirrm share/ngspice/helpdir
140
@dirrm share/ngspice/include/ngspice
141
@dirrm share/ngspice/include
142
@dirrm share/ngspice
(-)b/games/crossfire-client/Makefile (-6 / +3 lines)
Lines 13-19 COMMENT= Cooperative multiplayer graphical RPG and adventure game Link Here
13
LICENSE=	GPLv2
13
LICENSE=	GPLv2
14
LICENSE_FILE=	${WRKSRC}/COPYING
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
15
16
LIB_DEPENDS=	curl:${PORTSDIR}/ftp/curl
16
LIB_DEPENDS=	libcurl.so:${PORTSDIR}/ftp/curl
17
17
18
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
19
USE_GL=		glut
19
USE_GL=		glut
Lines 24-32 CONFIGURE_ARGS+= --disable-alsa --disable-alsa9 Link Here
24
CPPFLAGS+=	-I${LOCALBASE}/include
24
CPPFLAGS+=	-I${LOCALBASE}/include
25
LDFLAGS+=	-L${LOCALBASE}/lib
25
LDFLAGS+=	-L${LOCALBASE}/lib
26
26
27
MAN6=	crossfire-client-gtk2.6
28
29
NO_STAGE=	yes
30
post-patch:
27
post-patch:
31
	${REINPLACE_CMD} -e '/#include <curl\/types.h>/d' \
28
	${REINPLACE_CMD} -e '/#include <curl\/types.h>/d' \
32
		${WRKSRC}/common/metaserver.c
29
		${WRKSRC}/common/metaserver.c
Lines 36-43 post-patch: Link Here
36
post-install:
33
post-install:
37
	${CP} ${WRKSRC}/pixmaps/48x48.png ${WRKSRC}/pixmaps/crossfire-client.png
34
	${CP} ${WRKSRC}/pixmaps/48x48.png ${WRKSRC}/pixmaps/crossfire-client.png
38
	${INSTALL_DATA} ${WRKSRC}/gtk-v2/crossfire-client.desktop \
35
	${INSTALL_DATA} ${WRKSRC}/gtk-v2/crossfire-client.desktop \
39
		${PREFIX}/share/applications
36
		${STAGEDIR}${PREFIX}/share/applications
40
	${INSTALL_DATA} ${WRKSRC}/pixmaps/crossfire-client.png \
37
	${INSTALL_DATA} ${WRKSRC}/pixmaps/crossfire-client.png \
41
		${PREFIX}/share/pixmaps
38
		${STAGEDIR}${PREFIX}/share/pixmaps
42
39
43
.include <bsd.port.mk>
40
.include <bsd.port.mk>
(-)b/games/crossfire-client/pkg-plist (-4 / +5 lines)
Lines 1-7 Link Here
1
bin/cfsndserv
1
bin/cfsndserv
2
bin/crossfire-client-gtk2
2
bin/crossfire-client-gtk2
3
man/man6/crossfire-client-gtk2.6.gz
3
share/applications/crossfire-client.desktop
4
share/applications/crossfire-client.desktop
4
share/pixmaps/crossfire-client.png
5
%%DATADIR%%/glade-gtk2/caelestis.glade
5
%%DATADIR%%/glade-gtk2/caelestis.glade
6
%%DATADIR%%/glade-gtk2/chthonic.glade
6
%%DATADIR%%/glade-gtk2/chthonic.glade
7
%%DATADIR%%/glade-gtk2/dialogs.glade
7
%%DATADIR%%/glade-gtk2/dialogs.glade
Lines 16-21 share/pixmaps/crossfire-client.png Link Here
16
%%DATADIR%%/glade-gtk2/v1-redux.glade
16
%%DATADIR%%/glade-gtk2/v1-redux.glade
17
%%DATADIR%%/themes/Black
17
%%DATADIR%%/themes/Black
18
%%DATADIR%%/themes/Standard
18
%%DATADIR%%/themes/Standard
19
@dirrm %%DATADIR%%/glade-gtk2
19
share/pixmaps/crossfire-client.png
20
@dirrm %%DATADIR%%/themes
20
@dirrmtry %%DATADIR%%/themes
21
@dirrm %%DATADIR%%
21
@dirrmtry %%DATADIR%%/glade-gtk2
22
@dirrmtry %%DATADIR%%
(-)b/games/freedroid/Makefile (-8 / +6 lines)
Lines 10-17 MASTER_SITES= SF/${PORTNAME}/${PORTNAME}Classic/FreedroidClassic-${PORTVERSION} Link Here
10
MAINTAINER=	kevinz5000@gmail.com
10
MAINTAINER=	kevinz5000@gmail.com
11
COMMENT=	Clone of the Commodore game Paradroid
11
COMMENT=	Clone of the Commodore game Paradroid
12
12
13
LIB_DEPENDS=	jpeg:${PORTSDIR}/graphics/jpeg \
13
LICENSE=	GPLv2
14
		png15:${PORTSDIR}/graphics/png
14
LICENSE_FILE=	${WRKSRC}/COPYING
15
16
LIB_DEPENDS=	libjpeg.so:${PORTSDIR}/graphics/jpeg \
17
		libpng15.so:${PORTSDIR}/graphics/png
15
18
16
USES=		iconv
19
USES=		iconv
17
USE_SDL=	mixer image sdl
20
USE_SDL=	mixer image sdl
Lines 23-39 DESKTOP_ENTRIES= "Freedroid Classic" "${COMMENT}" \ Link Here
23
			"${DATADIR}/graphics/999.png" \
26
			"${DATADIR}/graphics/999.png" \
24
			"freedroid" "Game;ArcadeGame;" false
27
			"freedroid" "Game;ArcadeGame;" false
25
28
26
MAN6=		freedroid.6
27
28
NO_STAGE=	yes
29
post-extract:
29
post-extract:
30
.for d in graphics map sound
30
.for d in graphics map sound
31
	@${FIND} ${WRKSRC}/${d} -type f -name "Makefile*" -print0 | \
31
	@${FIND} ${WRKSRC}/${d} -type f -name "Makefile*" -print0 | \
32
		${XARGS} -0 ${RM}
32
		${XARGS} -0 ${RM}
33
.endfor
33
.endfor
34
34
35
.include <bsd.port.pre.mk>
36
37
post-patch:
35
post-patch:
38
	@${REINPLACE_CMD} -e 's#-lSDL # #;' \
36
	@${REINPLACE_CMD} -e 's#-lSDL # #;' \
39
				${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
37
				${CONFIGURE_WRKSRC}/${CONFIGURE_SCRIPT}
Lines 42-45 post-patch: Link Here
42
	@${REINPLACE_CMD} -e 's#\#include \"mac-osx/getopt\.h\"##;' \
40
	@${REINPLACE_CMD} -e 's#\#include \"mac-osx/getopt\.h\"##;' \
43
				${WRKSRC}/src/system.h
41
				${WRKSRC}/src/system.h
44
42
45
.include <bsd.port.post.mk>
43
.include <bsd.port.mk>
(-)b/games/freedroid/pkg-plist (-6 / +7 lines)
Lines 1-4 Link Here
1
bin/freedroid
1
bin/freedroid
2
man/man6/freedroid.6.gz
2
%%DATADIR%%/graphics/001.jpg
3
%%DATADIR%%/graphics/001.jpg
3
%%DATADIR%%/graphics/001.png
4
%%DATADIR%%/graphics/001.png
4
%%DATADIR%%/graphics/123.jpg
5
%%DATADIR%%/graphics/123.jpg
Lines 104-112 bin/freedroid Link Here
104
%%DATADIR%%/sound/dreamfish-uridium2_loader.mod
105
%%DATADIR%%/sound/dreamfish-uridium2_loader.mod
105
%%DATADIR%%/sound/kollaps-tron.mod
106
%%DATADIR%%/sound/kollaps-tron.mod
106
%%DATADIR%%/sound/starpaws.mod
107
%%DATADIR%%/sound/starpaws.mod
107
@dirrm %%DATADIR%%/sound
108
@dirrmtry %%DATADIR%%/sound
108
@dirrm %%DATADIR%%/map
109
@dirrmtry %%DATADIR%%/map
109
@dirrm %%DATADIR%%/graphics/lanzz_theme
110
@dirrmtry %%DATADIR%%/graphics/lanzz_theme
110
@dirrm %%DATADIR%%/graphics/classic_theme
111
@dirrmtry %%DATADIR%%/graphics/classic_theme
111
@dirrm %%DATADIR%%/graphics
112
@dirrmtry %%DATADIR%%/graphics
112
@dirrm %%DATADIR%%
113
@dirrmtry %%DATADIR%%
(-)b/games/netrek-client-cow/Makefile (-2 / +3 lines)
Lines 11-17 MASTER_SITES= http://www.netrek.org/files/COW/ \ Link Here
11
MAINTAINER=	kevinz5000@gmail.com
11
MAINTAINER=	kevinz5000@gmail.com
12
COMMENT=	Multi-player battle simulation with a Star Trek theme
12
COMMENT=	Multi-player battle simulation with a Star Trek theme
13
13
14
LIB_DEPENDS=	Imlib2:${PORTSDIR}/graphics/imlib2
14
LIB_DEPENDS=	libImlib2.so:${PORTSDIR}/graphics/imlib2
15
16
LICENSE_FILE=	${WRKSRC}/COPYING
15
17
16
GNU_CONFIGURE=	yes
18
GNU_CONFIGURE=	yes
17
USES=		gmake
19
USES=		gmake
Lines 19-25 USE_SDL= sdl mixer Link Here
19
21
20
CONFIGURE_ARGS+=	NORSA='\#'
22
CONFIGURE_ARGS+=	NORSA='\#'
21
23
22
NO_STAGE=	yes
23
post-patch:
24
post-patch:
24
	${REINPLACE_CMD} -e 's|ushort  damage|unsigned short damage|' \
25
	${REINPLACE_CMD} -e 's|ushort  damage|unsigned short damage|' \
25
		${WRKSRC}/short.c
26
		${WRKSRC}/short.c
(-)b/security/gnomint/Makefile (-5 / +5 lines)
Lines 11-30 MAINTAINER= kevinz5000@gmail.com Link Here
11
COMMENT=	X.509 Certification Authority management tool
11
COMMENT=	X.509 Certification Authority management tool
12
12
13
LICENSE=	GPLv3
13
LICENSE=	GPLv3
14
LICENSE_FILE=	${WRKSRC}/COPYING
14
15
15
LIB_DEPENDS=	gcrypt:${PORTSDIR}/security/libgcrypt \
16
LIB_DEPENDS=	libgcrypt.so:${PORTSDIR}/security/libgcrypt \
16
		gnutls:${PORTSDIR}/security/gnutls \
17
		libgnutls.so:${PORTSDIR}/security/gnutls \
17
		sqlite3:${PORTSDIR}/databases/sqlite3
18
		libsqlite3.so:${PORTSDIR}/databases/sqlite3
18
19
19
GNU_CONFIGURE=	yes
20
GNU_CONFIGURE=	yes
20
USES=		gmake perl5 pkgconfig
21
USES=		gmake perl5 pkgconfig
21
USE_GNOME=	gconf2 gdkpixbuf2 glib20 gtk20
22
USE_GNOME=	gconf2 gdkpixbuf2 glib20 gtk20
22
CFLAGS:=	${CFLAGS:C/-Werror//}
23
23
24
CFLAGS:=	${CFLAGS:C/-Werror//}
24
25
25
OPTIONS_DEFINE=	NLS
26
OPTIONS_DEFINE=	NLS
26
27
27
NO_STAGE=	yes
28
.include <bsd.port.options.mk>
28
.include <bsd.port.options.mk>
29
29
30
.if ${PORT_OPTIONS:MNLS}
30
.if ${PORT_OPTIONS:MNLS}
(-)b/security/gnomint/pkg-plist (+2 lines)
Lines 72-74 etc/gconf/schemas/gnomint.schemas Link Here
72
%%NLS%%@dirrmtry lib/locale/sv/LC_MESSAGES
72
%%NLS%%@dirrmtry lib/locale/sv/LC_MESSAGES
73
%%NLS%%@dirrmtry lib/locale/sv
73
%%NLS%%@dirrmtry lib/locale/sv
74
%%NLS%%@dirrmtry lib/locale
74
%%NLS%%@dirrmtry lib/locale
75
@dirrmtry etc/gconf/schemas
76
@dirrmtry etc/gconf

Return to bug 185556