5c39f8eef7
o Furthermore, do not depend on mldonkey port as well since this port does not require it to be installed in the local machine to run. It can contact mldonkey instances across the network o Bump PORTREVISION due to dependency list change
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# New ports collection makefile for: mldonkey link submitter
|
|
# Date created: Fri Feb 21 14:11:00 UTC 2003
|
|
# Whom: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mldonkey
|
|
PORTVERSION= 0.0.1
|
|
PORTREVISION= 1
|
|
CATEGORIES= net
|
|
MASTER_SITES= http://ircnet.de/home/cru/ed2k_urlslave/dist/
|
|
PKGNAMESUFFIX= -urlslave
|
|
DISTNAME= mlurlslave-v${PORTVERSION:S/^0.0.//}
|
|
|
|
MAINTAINER= lioux@FreeBSD.org
|
|
COMMENT= GTK+ enabled Perl script for adding ed2k:// links to MLDonkey
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/perl5/site_perl/${PERL_VER}/${PERL_ARCH}/Gtk.pm:${PORTSDIR}/x11-toolkits/p5-Gtk
|
|
|
|
USE_PERL5= yes
|
|
NO_BUILD= yes
|
|
|
|
BINARY_NAME= mlurlslave
|
|
|
|
post-extract:
|
|
@${GREP} '^#' ${WRKSRC}/${BINARY_NAME} | ${GREP} -v '/usr/bin/perl' > ${WRKDIR}/README
|
|
|
|
post-patch:
|
|
@${PERL} -pi -e 's|/usr/bin/perl|${PERL}|' ${WRKSRC}/${BINARY_NAME}
|
|
|
|
do-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
@${CHMOD} 0755 ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
@${INSTALL_DATA} ${WRKDIR}/README ${PREFIX}/share/doc/${PORTNAME}${PKGNAMESUFFIX}
|
|
.endif
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${BINARY_NAME} ${PREFIX}/bin
|
|
|
|
post-install:
|
|
@${SED} -e 's|/usr/local/|${PREFIX}/|' ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|