diff options
author | ache <ache@FreeBSD.org> | 2005-06-19 02:21:52 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 2005-06-19 02:21:52 +0800 |
commit | 025ec9cc52f61d34bcd20f001087f656a64e7f24 (patch) | |
tree | d935ba3ff1ae77bc468314bccab46bbb068bc85e /www | |
parent | f3943cfd8084a3a5e2ae5cc18402aa227018697d (diff) | |
download | freebsd-ports-gnome-025ec9cc52f61d34bcd20f001087f656a64e7f24.tar.gz freebsd-ports-gnome-025ec9cc52f61d34bcd20f001087f656a64e7f24.tar.zst freebsd-ports-gnome-025ec9cc52f61d34bcd20f001087f656a64e7f24.zip |
utility for batch modification of LJ permissions or LJ restoring
Diffstat (limited to 'www')
-rw-r--r-- | www/Makefile | 1 | ||||
-rw-r--r-- | www/ljpms/Makefile | 35 | ||||
-rw-r--r-- | www/ljpms/distinfo | 2 | ||||
-rw-r--r-- | www/ljpms/files/patch-ljpms.pl | 17 | ||||
-rw-r--r-- | www/ljpms/pkg-descr | 4 |
5 files changed, 59 insertions, 0 deletions
diff --git a/www/Makefile b/www/Makefile index d604946a25a0..cd3ab1c4f14c 100644 --- a/www/Makefile +++ b/www/Makefile @@ -214,6 +214,7 @@ SUBDIR += linux-sunbird SUBDIR += linuxpluginwrapper SUBDIR += ljdeps + SUBDIR += ljpms SUBDIR += ljsm SUBDIR += logtools SUBDIR += lws diff --git a/www/ljpms/Makefile b/www/ljpms/Makefile new file mode 100644 index 000000000000..4c216744447a --- /dev/null +++ b/www/ljpms/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: ljpms +# Date created: 12 Aug 2004 +# Whom: ache +# +# $FreeBSD$ +# + +PORTNAME= ljpms +PORTVERSION= 1.2 +CATEGORIES= www perl5 +MASTER_SITES= http://ryzh.kiev.ua/ljsm/ +DISTFILES= ljpms-1_2.zip + +MAINTAINER= ache@freebsd.org +COMMENT= Livejournal.com postings mass-restore and permissions utility + +RUN_DEPENDS= ${SITE_PERL}/XML/Simple.pm:${PORTSDIR}/textproc/p5-XML-Simple \ + ${SITE_PERL}/SOAP/Lite.pm:${PORTSDIR}/net/p5-SOAP-Lite + +PLIST_FILES= bin/ljpms +NO_WRKSUBDIR= yes +USE_ZIP= yes +USE_PERL5_RUN= yes +USE_REINPLACE= yes +NO_BUILD= yes + +EXTRACT_BEFORE_ARGS= -qoaa + +do-configure: + @${REINPLACE_CMD} -e 's|^#!perl|#!${PERL}|' ${WRKSRC}/ljpms.pl + +do-install: + cd ${WRKSRC} && ${INSTALL_SCRIPT} ljpms.pl ${PREFIX}/bin/ljpms + +.include <bsd.port.mk> diff --git a/www/ljpms/distinfo b/www/ljpms/distinfo new file mode 100644 index 000000000000..94f78c6e7a0d --- /dev/null +++ b/www/ljpms/distinfo @@ -0,0 +1,2 @@ +MD5 (ljpms-1_2.zip) = 9f91f30667e2cbbf4db8e82fd0a7a111 +SIZE (ljpms-1_2.zip) = 3049 diff --git a/www/ljpms/files/patch-ljpms.pl b/www/ljpms/files/patch-ljpms.pl new file mode 100644 index 000000000000..2584b47edb2b --- /dev/null +++ b/www/ljpms/files/patch-ljpms.pl @@ -0,0 +1,17 @@ +--- ljpms.pl.orig Mon Jan 3 15:19:08 2005 ++++ ljpms.pl Sat Jun 18 21:59:45 2005 +@@ -1,4 +1,4 @@ +-#!perl ++#!/usr/local/bin/perl + + # CVS: $Id: ljpms.pl,v 2.5 2005/01/03 12:19:08 sasha Exp $ + # Author: Alexander Nikolaev <sasha_nikolaev@yahoo.com> +@@ -84,7 +84,7 @@ + exit(usage('invalidmode')) unless ($modes{$mode} || $mode =~ /^\d+$/); + exit (usage('noexport')) unless -d LOCALDIR . "$suser/export"; + +-if ($suser ne $user) { # post to someone else's journal ++if ($suser ne $user || $mode eq 'restore') { # post to someone else's journal + exit usage('invalidmode') if ($mode eq 'delete'); + exit usage('invalidmode') if ($mode =~ /^\d+$/); + print "posting ${suser}'s backdated entries to ${user}'s journal\n"; diff --git a/www/ljpms/pkg-descr b/www/ljpms/pkg-descr new file mode 100644 index 000000000000..0d99279ea298 --- /dev/null +++ b/www/ljpms/pkg-descr @@ -0,0 +1,4 @@ +Livejournal.com utility to mass restore user postings or mass change +permissions. + +WWW: http://ryzh.kiev.ua/ljsm/ljpms.html |