1 | # $Id: Portfile,v 1.1 2006/04/29 11:29:19 mww Exp $ |
---|
2 | |
---|
3 | PortSystem 1.0 |
---|
4 | name sclj |
---|
5 | version 3.2 |
---|
6 | categories net |
---|
7 | maintainers |
---|
8 | description A livejournal client |
---|
9 | long_description JLJ is a command-line interface for posting to \ |
---|
10 | livejournal. Posts are edited in your default editor. |
---|
11 | homepage http://sclj.sourceforge.net/ |
---|
12 | master_sites sourceforge:sclj |
---|
13 | checksums sha1 338c156478a63e5db656f58495d9fe2e4fbcbeec |
---|
14 | depends_run port:perl5.8 |
---|
15 | use_bzip2 yes |
---|
16 | |
---|
17 | patchfiles patch-src-Makefile \ |
---|
18 | patch-Make.vars \ |
---|
19 | patch-man-man1-Makefile |
---|
20 | |
---|
21 | configure { |
---|
22 | cd ${worksrcpath}/src |
---|
23 | reinplace "s|\/usr\/bin\/perl|${prefix}\/bin\/perl|" \ |
---|
24 | sclj scljconv scljed |
---|
25 | } |
---|
26 | |
---|
27 | build {} |
---|
28 | |
---|
29 | destroot { |
---|
30 | system "cd ${worksrcpath} && make PREFIX=${destroot}${prefix} install" |
---|
31 | } |
---|
32 | |
---|