Changeset 1244
- Timestamp:
- Oct 25, 2010, 12:28:19 AM (13 years ago)
- Location:
- branches/0.8-stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/0.8-stable/Makefile.am
r1142 r1244 79 79 -e 's|@VERSION[@]|$(VERSION)|g' 80 80 81 build_support/Portfile: Makefile build_support/Portfile.in $(distdir).tar.gz.MD581 build_support/Portfile: Makefile build_support/Portfile.in 82 82 @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 85 90 @chmod a-w $@.t 86 91 @mv $@.t $@ -
branches/0.8-stable/build_support/Portfile.in
r1206 r1244 6 6 name svndigest 7 7 version @VERSION@ 8 revision 09 8 categories devel 10 9 platforms darwin 11 maintainers peter 10 maintainers gmail.com:pj31042 11 12 12 description 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 14 long_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. 18 19 19 20 homepage @PACKAGE_URL@ 20 21 master_sites sourceforge 21 checksums md5 @MD5SUM@ 22 23 checksums sha1 @SHA1SUM@ \ 24 rmd160 @RMD160SUM@ 25 26 depends_build port:pkgconfig 27 28 depends_lib port:subversion \ 29 port:apr \ 30 port:plplot 31 32 use_parallel_build yes 22 33 23 34 test.run yes 24 35 test.target check 25 26 depends_lib port:subversion port:apr port:plplot27 28 use_parallel_build yes
Note: See TracChangeset
for help on using the changeset viewer.