Changes between Version 2 and Version 3 of Guidelines
- Timestamp:
- 08/16/07 12:29:36 (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Guidelines
v2 v3 5 5 This page discusses some guidelines about using the !BePorts' Trac site. 6 6 7 == Merging with the main tree==7 == Merging == 8 8 9 A port should aim to get merged with the original software's main source tree. Many open source projects use the GNU [http://en.wikipedia.org/wiki/GNU_build_system Autotools] in order to be portable on a source level. While the concept is great, [http://www.gnu.org/software/autoconf/ Autoconf] and [http://www.gnu.org/software/automake/ Automake] are quite daunting. It is however worthwhile to learn at least a minimum about the GNU autotools. It will only help you. The PortingTips containslinks to more information about Autoconf and Automake.9 A port should eventually be merged with the original software's main source tree. Many open source projects use the GNU [http://en.wikipedia.org/wiki/GNU_build_system Autotools] in order to be portable on a source level. While the concept is great, [http://www.gnu.org/software/autoconf/ Autoconf] and [http://www.gnu.org/software/automake/ Automake] are quite daunting. It is however worthwhile to learn at least a minimum about the GNU Autotools. The PortingTips contain links to more information about Autoconf and Automake. 10 10 11 11 == The PortLog == 12 12 13 versions, revisions 13 When porting an application or library, it is strongly advised you keep a log of: 14 14 15 category/port 15 * what options are necessary for building on BeOS; and 16 * what problems you run into, and the solutions to them. 16 17 17 problems -> ticket (linking) 18 solutions 18 This information can be very helpful to others, after all. 19 20 When you get stuck and give up (hey, don't feel bad), create a new ticket explaining the problem. Also link to this ticket from within the port's PortLog. Consult TracLinks on how to do that. The tickets should be assigned to the component that corresponds to the port's category. It's all self-explanatory, really. 19 21 20 22 == Platforms == 21 23 24 Because of the incompatibilities between the various BeOS platforms, a port should be tested on all of them. '''BONE''' binaries however, should be able to run on Dano and Zeta, from what I hear. Correct me (Brecht) if I'm wrong. So that's one target for the three of those. '''R5''' (5.0.3) and '''Haiku''' are very different from BONE and are therefor two other targets. 25 26 The status of a port is described by the following keywords: 27 28 * ''untested'': not tested on this platform 29 * ''broken'': doesn't build 30 * ''unstable'': builds, but fails tests or has obvious flaws 31 * ''stable'': passes tests and seems to be working as it should 32 33 == Layout == 34 35 It would be nice if the layout of the portlogs would be consistent. Unfortunately, (currently) there is no way of enforcing this. Please use the following template: 36 37 {{{ 38 [[TOC]] 39 40 = category/port = 41 42 == version 1.0 == 43 44 ||r5||status|| 45 ||bone||status|| 46 ||haiku||status|| 47 48 === revision 1 (user) === 49 }}}
