[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[irssi-xmpp] NetBSD pkgsrc-wip irssi-xmpp package and a little Makefile patch regarding doc-install
- To: irssi-xmpp-list@cybione.org
- Subject: [irssi-xmpp] NetBSD pkgsrc-wip irssi-xmpp package and a little Makefile patch regarding doc-install
- From: Leonardo Taccari <iamleot@gmail.com>
- Date: Sun, 10 Jun 2012 15:06:48 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=date:from:to:subject:message-id:mime-version:content-type :content-disposition:user-agent; bh=q0TX6Y3GKWO6v8VwHLUwwFcNr57mk9qc0Tk3ujX+Lro=; b=M4XEfqOBiaPWGis6t2K8T/Ng/EEZcG+rUYL2VbW4p4Ky+1ojhQeuCqKTq8kn1BBH3l yW2XiU98BLoOUGQ2iY7aY70UEEpuWxwZodF1SdlvDdXGXaWNKbIQS7yHS5cdpn7R5Xky 8OFme3wpgBn3tnu+eBQil2y9sVLFot5Ro0apvVLaQNcfDVHCGHUEus2j4xBr/0MZQ1l5 oJWxzlTuAskWMIGGUQ7mRo5TSpwKuXi9fzAA+RvqkNSmsO8mVCUr6URo5Ua+wD3ir69B BWYbpt4Z71jJX1s4SrhEx4bauAq6g1IJo9nJuJPyzQ7RnBp8pTzyBwHIqGi7zWnpl872 uA/g==
- User-agent: Mutt/1.4.2.3i
Hello to the entire irssi-xmpp community!
I am happy to announce that irssi-xmpp is now available as pkgsrc[0]
package[1] via pkgsrc-wip project[2].
I suggest to add the "-m 644" option to the install in doc-install
Makefile target in order to install documentation files with the proper
mode. A trivial patch is attached.
While here I would like to thanks all the irssi-xmpp community for this
software!
PS: I am not subscribed to this list so please Cc me.
Keep up the good work!
L.
[0]: http://www.pkgsrc.org/
[1]: http://pkgsrc.se/wip/irssi-xmpp
[2]: http://pkgsrc-wip.sourceforge.net/
--- Makefile.orig 2012-06-10 14:57:28.000000000 +0200
+++ Makefile 2012-06-10 14:58:03.000000000 +0200
@@ -15,7 +15,7 @@
doc-install:
@echo installing documentation files to ${DESTDIR}${IRSSI_DOC}/irssi-xmpp
@install -d ${DESTDIR}${IRSSI_DOC}/irssi-xmpp
- @cd docs/ && install FAQ GENERAL MUC STARTUP XEP ${DESTDIR}${IRSSI_DOC}/irssi-xmpp
+ @cd docs/ && install -m 644 FAQ GENERAL MUC STARTUP XEP ${DESTDIR}${IRSSI_DOC}/irssi-xmpp
doc-uninstall:
@echo uninstalling documentation files from ${DESTDIR}${IRSSI_DOC}/irssi-xmpp