Changeset 1244


Ignore:
Timestamp:
Oct 25, 2010, 12:28:19 AM (13 years ago)
Author:
Peter Johansson
Message:

update Portfile after feedback from macports maintainer. Note openssl is now needed to create Portfile.

Location:
branches/0.8-stable
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/0.8-stable/Makefile.am

    r1142 r1244  
    7979  -e 's|@VERSION[@]|$(VERSION)|g'
    8080
    81 build_support/Portfile: Makefile build_support/Portfile.in $(distdir).tar.gz.MD5
     81build_support/Portfile: Makefile build_support/Portfile.in
    8282  @rm -f $@ $@.t
    83   @md5sum=`cut -f 1 -d ' ' $(distdir).tar.gz.MD5`;\
    84   $(edit) -e "s|@MD5SUM[@]|$$md5sum|g" '$(srcdir)/$@.in' > $@.t
     83  @openssl version > /dev/null || exit 1
     84  @openssl sha1 $(distdir).tar.gz > $(distdir).tar.gz.sha1
     85  @openssl rmd160 $(distdir).tar.gz > $(distdir).tar.gz.rmd160
     86  @sha1=`cut -f 2 -d ' ' $(distdir).tar.gz.sha1`;\
     87  rmd160=`cut -f 2 -d ' ' $(distdir).tar.gz.rmd160`;\
     88  $(edit) -e "s|@SHA1SUM[@]|$$sha1|g" -e "s|@RMD160SUM[@]|$$rmd160|g" \
     89  '$(srcdir)/$@.in' > $@.t
    8590  @chmod a-w $@.t
    8691  @mv $@.t $@
  • branches/0.8-stable/build_support/Portfile.in

    r1206 r1244  
    66name                svndigest
    77version             @VERSION@
    8 revision            0
    98categories          devel
    109platforms           darwin
    11 maintainers         peter
     10maintainers         gmail.com:pj31042
     11
    1212description         Create statistics of a subversion repository
    13 long_description svndigest is a tool to extract development \
    14 information and statistics from a subversion repository.  Svndigest is \
    15 written in C++ and extracts repository history using the subversion \
    16 API. The resulting report is written to a user specifiable directory \
    17 in HTML format.
     13
     14long_description    ${name} is a tool to extract development information and \
     15                    statistics from a subversion repository. Svndigest is \
     16                    written in C++ and extracts repository history using the \
     17                    Subversion API. The resulting report is written to a user \
     18                    specifiable directory in HTML format.
    1819
    1920homepage            @PACKAGE_URL@
    2021master_sites        sourceforge
    21 checksums           md5 @MD5SUM@
     22
     23checksums           sha1    @SHA1SUM@ \
     24                    rmd160  @RMD160SUM@
     25
     26depends_build       port:pkgconfig
     27
     28depends_lib         port:subversion \
     29                    port:apr \
     30                    port:plplot
     31
     32use_parallel_build  yes
    2233
    2334test.run            yes
    2435test.target         check
    25 
    26 depends_lib         port:subversion port:apr port:plplot
    27 
    28 use_parallel_build  yes
Note: See TracChangeset for help on using the changeset viewer.