9210b7cb07
Move gettext (0.10.35) with gettext-old Update gettext from gettext-devel (0.10.40) Remove gettext-devel Fix dependencies Stage 2 will involve upgraded gettext to 0.11 and fixing issues Stage 3 involves a de-orbit burn sequence for gettext-old Reviewed by: portmgr
60 lines
1.7 KiB
Makefile
60 lines
1.7 KiB
Makefile
# New ports collection makefile for: GUI to Direct Connect Text Client
|
|
# Date created: Thu Nov 22 00:34:48 BRST 2001
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= dctc
|
|
PORTVERSION= 0.48
|
|
CATEGORIES= net gnome
|
|
MASTER_SITES= http://ac2i.tzo.com/dctc/
|
|
PKGNAMESUFFIX= -gui
|
|
DISTNAME= dc_gui-${PORTVERSION}
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
|
|
BUILD_DEPENDS= dctc:${PORTSDIR}/net/dctc
|
|
LIB_DEPENDS= ORBit.2:${PORTSDIR}/devel/ORBit \
|
|
iconv.2:${PORTSDIR}/converters/iconv \
|
|
intl.1:${PORTSDIR}/devel/gettext-old
|
|
|
|
USE_GNOMELIBS= yes
|
|
USE_GTK= yes
|
|
USE_XLIB= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
CONFIGURE_ARGS= --with-gnome=${X11BASE} \
|
|
--with-gtk-prefix=${LOCALBASE} \
|
|
--with-libiconv-prefix=${LOCALBASE}
|
|
|
|
DOC_FILES= COPYING ChangeLog README
|
|
|
|
post-patch:
|
|
@${FIND} ${WRKSRC} -type f | ${XARGS} -n 10 -x ${PERL} -pi -e \
|
|
's|(\$$\(datadir\))/gnome|\1|; \
|
|
s|include.+<linux/sem.h>|include <sys/ipc.h>\n#include <sys/sem.h>|'
|
|
@${PERL} -pi -e 's|(hublist)|dc_\1|m' ${WRKSRC}/configure
|
|
@${PERL} -pi -e 's|(<stdio.h>.*)$$|\1\n#include <config.h>|; \
|
|
s|(cmdline.+)(hublist)|\1dc_\2|' \
|
|
${WRKSRC}/src/init_fnc.c
|
|
|
|
post-configure:
|
|
@${ECHO_CMD} '#ifndef MSG_NOSIGNAL' >> ${CONFIGURE_WRKSRC}/config.h
|
|
@${ECHO_CMD} '# define MSG_NOSIGNAL 0' >> ${CONFIGURE_WRKSRC}/config.h
|
|
@${ECHO_CMD} '#endif' >> ${CONFIGURE_WRKSRC}/config.h
|
|
@${ECHO_CMD} '#include <sys/param.h>' >> ${CONFIGURE_WRKSRC}/config.h
|
|
@${ECHO_CMD} '#ifndef SEMVMX' >> ${WRKSRC}/config.h
|
|
@${ECHO_CMD} '#define SEMVMX 32767' >> ${WRKSRC}/config.h
|
|
@${ECHO_CMD} '#endif' >> ${WRKSRC}/config.h
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}${PKGNAMESUFFIX}
|
|
.for file in ${DOC_FILES}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}${PKGNAMESUFFIX}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|