1 | # $Id$ |
---|
2 | PortSystem 1.0 |
---|
3 | name jlj |
---|
4 | version 2.12 |
---|
5 | categories net |
---|
6 | maintainers mstevens@etla.org |
---|
7 | description A livejournal client |
---|
8 | long_description JLJ is a command-line interface for posting to \ |
---|
9 | livejournal. Posts are edited in your default editor. |
---|
10 | homepage http://patsy.cis.rit.edu/Software/perl/ |
---|
11 | master_sites http://patsy.cis.rit.edu/Software/perl/ |
---|
12 | distname ${name}_${version} |
---|
13 | checksums md5 55724c4d6d26211f34803ef856075234 |
---|
14 | depends_run port:perl5.8 |
---|
15 | build {} |
---|
16 | worksrcdir jlj |
---|
17 | configure { |
---|
18 | reinplace "s|\/usr\/bin\/perl|${prefix}\/bin\/perl|" \ |
---|
19 | "${workpath}/jlj/jlj.pl" |
---|
20 | } |
---|
21 | destroot { |
---|
22 | xinstall -d -m 0755 ${destroot}${prefix}/bin |
---|
23 | xinstall -m 0755 ${workpath}/jlj/jlj.pl ${destroot}${prefix}/bin/jlj |
---|
24 | xinstall -d -m 0755 ${destroot}${prefix}/share/doc/${name}_${version} |
---|
25 | xinstall -m 0644 ${workpath}/jlj/README.JLJ ${destroot}${prefix}/share/doc/${name}_${version} |
---|
26 | xinstall -d -m 0755 ${destroot}/${prefix}/share/examples/${name}_${version} |
---|
27 | xinstall -m 0644 ${workpath}/jlj/.livejournal.rc ${destroot}${prefix}/share/examples/${name}_${version}/livejournal.rc |
---|
28 | } |
---|