X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=4edb70280917fa0f5fda438df9685bdfc5dfe613;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=3fddfecf0c1fb062be4cae9065a881038bf996b7;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index 3fddfec..4edb702 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2007-2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -16,9 +16,6 @@ Distributed under the LGPL using namespace std; using namespace Msp; -/** -Creates a buildable package. -*/ SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &s): Package(b, n), source(s), @@ -42,11 +39,6 @@ Msp::FS::Path SourcePackage::get_out_dir() const return source/arch.get_name()/config.get_option("outdir").value; } -/** -Checks which kinds of things the components of this package install. - -@return A bitmask of installed things -*/ unsigned SourcePackage::get_install_flags() { unsigned flags=0; @@ -79,12 +71,6 @@ LibMode SourcePackage::get_library_mode() const throw Exception("Unknown library mode"); } -/*** private ***/ - -/** -Processes configuration options that were most likely obtained from the command -line. -*/ void SourcePackage::do_configure(const StringMap &opts, unsigned flag) { init_config(); @@ -135,9 +121,6 @@ void SourcePackage::do_configure(const StringMap &opts, unsigned flag) (*i)->configure(opts, flag&2);*/ } -/** -Initializes configuration options. -*/ void SourcePackage::init_config() { config.add_option("profile", "default", "Configuration profile"); @@ -160,10 +143,6 @@ void SourcePackage::init_config() } } -/** -Fills in build info based on configuration. All required packages must be -configured when this is called. -*/ void SourcePackage::create_build_info() { for(PackageList::iterator i=base_reqs.begin(); i!=base_reqs.end(); ++i)