mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
1fb214ecab
PR: ports/186091 Submitted by: Yuri <yuri@rawbw.com> (maintainer) (slightly modified with help from Johannes Jost Meixner <xmj@chaot.net>)
21 lines
1.2 KiB
Plaintext
21 lines
1.2 KiB
Plaintext
--- ./Makefile.orig 2014-01-21 08:17:36.000000000 +0200
|
|
+++ ./Makefile 2014-03-12 18:18:00.000000000 +0200
|
|
@@ -31,12 +31,13 @@
|
|
install -m 644 desktop/can-icon.svg ${DESTDIR}${PREFIX}/share/icons/hicolor/scalable/apps/${APP}.svg
|
|
cp -rf src/* ${DESTDIR}${PREFIX}/share/${APP}
|
|
echo '#!/bin/sh' > ${DESTDIR}${PREFIX}/bin/${APP}
|
|
- echo 'if [ -d ${DESTDIR}/usr/local/share/${APP} ]; then' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
- echo ' cd ${DESTDIR}/usr/local/share/${APP}' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
+ echo 'if [ -d ${PREFIX}/share/${APP} ]; then' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
+ echo ' cd ${PREFIX}/share/${APP}' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
echo 'else' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
- echo ' cd ${DESTDIR}/usr/share/pybitmessage' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
+ echo ' echo "BitMessage directory not found"' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
+ echo ' exit 1' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
echo 'fi' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
- echo 'LD_LIBRARY_PATH="/opt/openssl-compat-bitcoin/lib/" exec python2 bitmessagemain.py' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
+ echo 'python2 bitmessagemain.py' >> ${DESTDIR}${PREFIX}/bin/${APP}
|
|
chmod +x ${DESTDIR}${PREFIX}/bin/${APP}
|
|
uninstall:
|
|
rm -f ${PREFIX}/share/man/man1/${APP}.1.gz
|