b8253c4f7c
while here remove md5
51 lines
1.7 KiB
Makefile
51 lines
1.7 KiB
Makefile
# New ports collection makefile for: gresolver
|
|
# Date created: 23 Oct 2004
|
|
# Whom: Jean-Yves Lefort <jylefort@brutele.be>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= gresolver
|
|
PORTVERSION= 0.0.5
|
|
PORTREVISION= 5
|
|
CATEGORIES= dns
|
|
MASTER_SITES= http://jodrell.net/files/unsupported/gresolver/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A graphical DNS query tool using GTK+
|
|
|
|
RUN_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Locale/gettext.pm:${PORTSDIR}/devel/p5-Locale-gettext \
|
|
${SITE_PERL}/${PERL_ARCH}/Gtk2.pm:${PORTSDIR}/x11-toolkits/p5-Gtk2 \
|
|
${SITE_PERL}/${PERL_ARCH}/Gtk2/GladeXML.pm:${PORTSDIR}/x11-toolkits/p5-Glade2 \
|
|
${SITE_PERL}/Net/IPv6Addr.pm:${PORTSDIR}/net-mgmt/p5-Net-IPv6Addr
|
|
|
|
USE_PERL5= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
# The Perl script uses GtkFileChooser widgets, which need libpthread
|
|
# through /usr/X11R6/lib/gtk-2.0/2.4.0/filesystems/libgnome-vfs.so.
|
|
# Unfortunately, on FreeBSD, if an application uses a library which
|
|
# uses libpthread, the application itself must link against
|
|
# libpthread. This is why a threaded Perl is required.
|
|
|
|
HAVE_THREADS!= ${PERL} -mthreads -e '' >/dev/null 2>&1 && ${ECHO_CMD} 'yes' || true
|
|
|
|
.if empty(HAVE_THREADS)
|
|
IGNORE= needs a threaded Perl, install lang/perl5.8 with threads support and try again
|
|
.endif
|
|
|
|
do-build:
|
|
@${SED} -e 's|@PREFIX@|${PREFIX}|' ${WRKSRC}/gresolver.pl > ${WRKSRC}/gresolver
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/gresolver ${PREFIX}/bin
|
|
${MKDIR} ${PREFIX}/share/applications
|
|
${INSTALL_DATA} ${WRKSRC}/gresolver.desktop ${PREFIX}/share/applications
|
|
${MKDIR} ${PREFIX}/share/pixmaps
|
|
${INSTALL_DATA} ${WRKSRC}/gresolver.png ${PREFIX}/share/pixmaps
|
|
${MKDIR} ${DATADIR}
|
|
${INSTALL_DATA} ${WRKSRC}/gresolver.glade ${DATADIR}
|
|
|
|
.include <bsd.port.post.mk>
|