diff options
author | gahr <gahr@FreeBSD.org> | 2013-01-30 00:48:02 +0800 |
---|---|---|
committer | gahr <gahr@FreeBSD.org> | 2013-01-30 00:48:02 +0800 |
commit | 2ee4530136c2c24d270be82f80507fb14814bcdd (patch) | |
tree | 28081880b2b8316c001645c53654b7b78b987855 | |
parent | 04f38f648b85aca01891fb3a0bf7a6edb24eb82d (diff) | |
download | freebsd-ports-gnome-2ee4530136c2c24d270be82f80507fb14814bcdd.tar.gz freebsd-ports-gnome-2ee4530136c2c24d270be82f80507fb14814bcdd.tar.zst freebsd-ports-gnome-2ee4530136c2c24d270be82f80507fb14814bcdd.zip |
- Fix a bug that prevents the Jingle Nodes plugin from loading
(see http://community.igniterealtime.org/thread/46479)
Reported by: marko.cupac@mimar.rs
-rw-r--r-- | net-im/openfire/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net-im/openfire/Makefile b/net-im/openfire/Makefile index e51303bef68b..d5b5262e5e52 100644 --- a/net-im/openfire/Makefile +++ b/net-im/openfire/Makefile @@ -3,7 +3,7 @@ PORTNAME= openfire PORTVERSION= 3.7.1 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= net-im java MASTER_SITES= http://download.igniterealtime.org/openfire/ @@ -35,6 +35,11 @@ VARDB= /var/db/openfire USERS= openfire GROUPS= ${USERS} +post-patch: + (cd ${WRKSRC} && ${MV} \ + ./src/plugins/jingleNodes/src/i18n/jingleNodes_i18n.properties \ + ./src/plugins/jingleNodes/src/i18n/jinglenodes_i18n.properties) + do-install: (cd ${INSTALL_WRKSRC}/lib && ${INSTALL} -m 744 *.jar ${JAVAJARDIR}) |