c3b2b09540
The MASTER_SITES of the current version of gkrelltop, 2.2.6 has disappeared. The project moved to SourceForge, but the earliest version available there is 2.2.7. However, 2.2.7 failed to build on FreeBSD 8.4 i386 and FreeBSD 9.1 amd64. Version 2.2.13, the latest, fails to build on all platforms, including DragonFly. Upgrading to version 2.2.10 results in successful builds on all platforms. Also, the header was trimmed and USE_GMAKE was replaced with USES+=gmake. PR: ports/178534 Approved by: bapt (mentor), maintainer timeout (~10 weeks)
12 lines
324 B
C
12 lines
324 B
C
--- top_three.c.orig 2009-07-24 03:53:17.000000000 +0000
|
|
+++ top_three.c
|
|
@@ -16,6 +16,9 @@
|
|
* because every OS has it's own way of revealing CPU/memory usage.
|
|
* compile with gcc -DOS ...
|
|
*/
|
|
+#if defined(DRAGONFLY)
|
|
+#define FREEBSD
|
|
+#endif
|
|
#if defined(FREEBSD)
|
|
#define OS_DEFINED
|
|
#endif /* defined(FREEBSD) */
|