blob: f2bfc4329cde1e5306ca9937ae7c56c649c88346 (
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
|
# Created by: Alejandro Pulver <alejandro@varnet.biz>
# $FreeBSD$
PORTNAME= adime
PORTVERSION= 2.2.1
PORTREVISION= 2
CATEGORIES= devel
MASTER_SITES= SF
MAINTAINER= ports@FreeBSD.org
COMMENT= Generate Allegro dialogs in a simple way
LIB_DEPENDS= liballeg.so:${PORTSDIR}/devel/allegro
USES= gmake
NO_STAGE= yes
.include "Makefile.man"
MAKEFILE= makefile
INSTALL_TARGET= install install-man
USE_LDCONFIG= yes
pre-build:
@(cd ${WRKSRC} && ${SH} fix.sh unix)
post-patch:
# Fix Makefile
@${REINPLACE_CMD} -e 's|gcc|${CC}| ; \
s|%%CFLAGS%%|${CFLAGS}| ; \
s|/usr/local|${PREFIX}| ; s|$$(OPT)||' \
${WRKSRC}/misc/makefile.uni
.include <bsd.port.mk>
|