mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-13 07:34:50 +00:00
fbab09fee3
ftp/jigdo net/amule1 net/amule2 net/apollon net/azureus net/bnbt net/btpeer net/btqueue net/cdonkey net/ctorrent net/dcd net/dclib net/dctc net/dctc-gui net/dctc-gui-qt net/edonkey-gui-gtk net/edonkey-gui-gtk-urlslave net/fcptools net/fidelio net/freenet net/frost net/giftcurs net/giftoxic net/giftui net/gift net/gift-fasttrack net/gift-gnutella net/gift-openft net/gkrellm-gift net/gnewtellium net/gnome-btdownload net/gnunet net/gtkhx net/gtk-gnutella net/gtorrentviewer net/hagelslag net/hx net/i2p net/javadc net/kmldonkey net/ktorrent net/libbt net/liberator net/libfreenet net/libpdtp net/libtorrent net/limewire net/linux-agsatellite net/linux-edonkey-core net/linux-edonkey-server net/linux-jigdo net/linux-overnet-core net/minder net/mldonkey net/mldonkey-core net/mldonkey-core-devel net/mldonkey-devel net/mldonkey-gui net/mldonkey-gui-devel net/mldonkey-perlreactor net/mldonkey-sancho net/mldonkey-serverspy net/mldonkey-urlslave net/mutella net/mute-net net/mute-net-gui net/mute-net-text net/napshare net/nicotine net/opendchub net/peercast net/phex net/pyslsk net/py-bittornado net/py-bittornado-core net/py-bittorrent net/py-bittorrent-core net/py-bittorrent-core-devel net/py-bittorrent-devel net/py-fngrab net/py-kenosis net/py-kenosis-bittorrent net/py-py2play net/p5-pdonkey net/qtella net/qtorrent net/rtorrent net/squall net/torrentflux net/torrentsniff net/trackerbt net/transmission net/valknut net/verlihub net/verlihub-plugins net/xmule net/xnap misc/ed2k misc/edonkey-tool-hash misc/linux-edonkey-tool-recovermet Repocopies by: marcus
58 lines
1.7 KiB
Makefile
58 lines
1.7 KiB
Makefile
# New ports collection makefile for: limewire
|
|
# Date created: Fri Feb 22 00:28:41 CST 2002
|
|
# Whom: Kyle Martin <mkm@ieee.org> et al
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= limewire
|
|
PORTVERSION= 4.9
|
|
CATEGORIES= net-p2p java
|
|
MASTER_SITES= http://maverick.limewire.com/download/
|
|
DISTNAME= LimeWireOther
|
|
|
|
MAINTAINER= ports@edini.net
|
|
COMMENT= A Java based gnutella client
|
|
|
|
RUN_DEPENDS= java:${PORTSDIR}/java/javavmwrapper
|
|
|
|
USE_ZIP= yes
|
|
USE_JAVA= yes
|
|
JAVA_VERSION= 1.3+
|
|
NO_BUILD= yes
|
|
WRKSRC= ${WRKDIR}/LimeWire
|
|
|
|
RESTRICTED= License does not allow redistribution of any kind
|
|
NO_CDROM= ${RESTRICTED}
|
|
NO_PACKAGE= ${RESTRICTED}
|
|
|
|
DATADIR= ${JAVASHAREDIR}/${PORTNAME}
|
|
DATAFILES= LimeWire.jar MessagesBundles.jar ProgressTabs.jar \
|
|
clink.jar commons-httpclient.jar commons-logging.jar \
|
|
daap.jar i18n.jar icu4j.jar id3v2.jar jcraft.jar \
|
|
jdic.jar jl011.jar jmdns.jar log4j.jar logicrypto.jar \
|
|
looks.jar mp3sp14.jar themes.jar tritonus.jar \
|
|
vorbis.jar xerces.jar xml-apis.jar xml.war update.ver \
|
|
hashes libtray.so data.ser runLime.sh \
|
|
MessagesBundle.properties spacer.gif donotremove.htm \
|
|
root COPYING README.txt SOURCE
|
|
|
|
SUB_FILES= limewire.sh
|
|
PLIST_FILES= bin/limewire
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/limewire.sh ${PREFIX}/bin/limewire
|
|
cd ${WRKSRC} \
|
|
&& ${FIND} ${DATAFILES} -type d -exec ${MKDIR} ${DATADIR}/{} \;
|
|
cd ${WRKSRC} \
|
|
&& ${FIND} ${DATAFILES} -type f -exec ${INSTALL_DATA} {} ${DATADIR}/{} \;
|
|
|
|
post-install:
|
|
@cd ${WRKSRC} \
|
|
&& ${FIND} -s ${DATAFILES} -type f | ${SED} 's,^,${DATADIR:S,^${PREFIX}/,,}/,' >>${TMPPLIST}
|
|
@cd ${WRKSRC} \
|
|
&& ${FIND} -s -d ${DATAFILES} -type d | ${SED} 's,^,@dirrm ${DATADIR:S,^${PREFIX}/,,}/,' >>${TMPPLIST}
|
|
@${ECHO_CMD} "@dirrm ${DATADIR:S,^${PREFIX}/,,}" >>${TMPPLIST}
|
|
|
|
.include <bsd.port.mk>
|