Ticket #38111: Portfile.diff
File Portfile.diff, 2.6 KB (added by cooljeanius (Eric Gallager), 11 years ago) |
---|
-
/opt/local/var/macports/sources/LocalPorts/sysutils/stress/Portfile
old new 2 2 # $Id: Portfile 78632 2011-05-14 22:50:58Z ryandesign@macports.org $ 3 3 4 4 PortSystem 1.0 5 PortGroup github 1.06 5 7 github.setup cooljeanius stress 1.0.4 6 name stress 7 version 1.0.4 8 8 revision 0 9 9 platforms darwin 10 10 categories sysutils benchmarks … … 14 14 long_description ${description} It imposes a configurable amount of \ 15 15 CPU, memory, I/O, and disk stress on the system. 16 16 17 homepage http://weather.ou.edu/%7Eapw/projects/stress/ 17 homepage http://weather.ou.edu/%7Eapw/projects/${name}/ 18 master_sites ${homepage} 18 19 19 fetch.type git 20 git.url git://github.com/cooljeanius/stress-1.0.4.git 20 checksums rmd160 2fc0896ae9039776dee3351205d7e2496a36cfe4 \ 21 sha256 369c997f65e8426ae8b318d4fdc8e6f07a311cfa77cc4b25dace465c582163c0 21 22 22 23 variant autoreconf description {Regenerates configure script before building. \ 23 24 Also pulls in extra dependencies.} { 24 25 depends_build-append port:autoconf-archive \ 25 26 port:gawk \ 26 27 port:grep \ 27 lib:librpm:rpm \ 28 bin:rpmbuild:rpm \ 29 bin:rcs2log:cvs \ 28 30 port:texinfo \ 29 port:pkgconfig 31 port:pkgconfig \ 32 bin:help2man:help2man 30 33 use_autoreconf yes 31 34 autoreconf.args -fvi 32 35 configure.args-append --disable-silent-rules 36 post-extract { 37 xinstall -m 644 ${worksrcpath}/configure.in ${worksrcpath}/configure.ac 38 file delete ${worksrcpath}/configure.in 39 file mkdir ${worksrcpath}/m4 40 file copy ${prefix}/share/aclocal/ax_spec_package_version.m4 ${worksrcpath}/m4 41 file copy ${prefix}/share/aclocal/pkg.m4 ${worksrcpath}/m4 42 file mkdir ${worksrcpath}/build-aux 43 file copy ${filespath}/Makefile.spec ${worksrcpath} 44 } 45 patchfiles-append patch-configure.ac.diff \ 46 patch-Makefile.am.diff \ 47 patch-src-Makefile.am.diff 48 test.run yes 49 test.target test 33 50 } 34 51 35 52 livecheck.type none