X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fpackage.cpp;h=b35a0d8f0ab0af20eaa65acd03636592b86493ce;hb=242c55b17e6608b29a77ca17a5b677e202a3ca90;hp=c905ee464e7041de6372cbcca0f7e7142e20ef35;hpb=77461a8c0e2b5686b04cf15f3a9333b215813992;p=builder.git diff --git a/source/package.cpp b/source/package.cpp index c905ee4..b35a0d8 100644 --- a/source/package.cpp +++ b/source/package.cpp @@ -1,7 +1,7 @@ /* $Id$ This file is part of builder -Copyright © 2006-2007 Mikko Rasa, Mikkosoft Productions +Copyright © 2006-2007, 2009 Mikko Rasa, Mikkosoft Productions Distributed under the LGPL */ @@ -16,9 +16,6 @@ using namespace Msp; #include -/** -Creates a buildable package. -*/ Package::Package(Builder &b, const string &n): builder(b), name(n), @@ -26,10 +23,6 @@ Package::Package(Builder &b, const string &n): use_pkgconfig(true) { } -/** -Collects all directly and indirectly required packages, including the package -itself. -*/ PackageList Package::collect_requires() { PackageList result; @@ -46,10 +39,6 @@ PackageList Package::collect_requires() return result; } -/** -Processes configuration options that were most likely obtained from the command -line. -*/ void Package::configure(const StringMap &opts, unsigned flag) { if(conf_done) @@ -71,7 +60,6 @@ void Package::configure(const StringMap &opts, unsigned flag) conf_done=true; } -/*** private ***/ Package::Loader::Loader(Package &p): pkg(p)