X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fsourcepackage.cpp;h=d0524e84dab7af88e1d48f40c63fdded7b00e677;hb=c8dfe708b5551818dad3f6cf3e86cc72fe684572;hp=44faa071512280cec93c9ee8e8348e51c63333a0;hpb=ef97eadef58922f45e1ba86a1d009db5ea41dd50;p=builder.git diff --git a/source/sourcepackage.cpp b/source/sourcepackage.cpp index 44faa07..d0524e8 100644 --- a/source/sourcepackage.cpp +++ b/source/sourcepackage.cpp @@ -1,9 +1,11 @@ #include +#include #include #include #include #include "binarypackage.h" #include "builder.h" +#include "file.h" #include "misc.h" #include "pkgconfigfile.h" #include "tool.h" @@ -20,15 +22,18 @@ bool component_sort(const Component &c1, const Component &c2) } -SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &s): +SourcePackage::SourcePackage(Builder &b, const string &n, const FS::Path &f): Package(b, n), - source(s), + source_dir(FS::dirname(f)), build_type(0), config(*this), deps_cache(*this) { config.load(); + build_file = builder.get_vfs().get_target(f); + if(!build_file) + build_file = new File(builder, *this, f); components.push_back(Component(*this, Component::TARBALL, "@src")); } @@ -50,7 +55,7 @@ FS::Path SourcePackage::get_temp_dir() const if(temp.is_absolute()) return temp/name/subdir; else - return source/temp/subdir; + return source_dir/temp/subdir; } FS::Path SourcePackage::get_out_dir() const @@ -58,74 +63,9 @@ FS::Path SourcePackage::get_out_dir() const const Architecture &arch = builder.get_current_arch(); string detail = (build_type ? build_type->get_name() : string()); if(arch.is_native()) - return source/detail; + return source_dir/detail; else - return source/arch.get_name()/detail; -} - -string SourcePackage::expand_string(const string &str) const -{ - string result = str; - string::size_type dollar = 0; - unsigned n = 0; - while((dollar = result.find('$'))!=string::npos) - { - if(n>1000) - throw bad_expansion("nested too deep"); - - string::size_type end; - string var; - if(dollar+1configure(opts, flag); -} - -void SourcePackage::init_config() -{ + return source_dir/arch.get_name()/detail; } void SourcePackage::create_build_info() @@ -133,10 +73,6 @@ void SourcePackage::create_build_info() if(build_type) build_info.update_from(build_type->get_build_info()); - // XXX Currently, a package-specific settings will override cmdline. This might or might not be desirable. - const StringList &warnings = builder.get_warnings(); - build_info.warnings.insert(build_info.warnings.begin(), warnings.begin(), warnings.end()); - build_info.incpath.push_back((builder.get_prefix()/"include").str()); build_info.libpath.push_back((builder.get_prefix()/"lib").str()); @@ -156,6 +92,7 @@ void SourcePackage::create_build_info() for(list::iterator i=components.begin(); i!=components.end(); ++i) { + i->prepare(); i->create_build_info(); if(i->get_type()==Component::LIBRARY) export_binfo.libs.push_back(i->get_name()); @@ -164,6 +101,8 @@ void SourcePackage::create_build_info() void SourcePackage::create_targets() { + deps_cache.load(); + bool pc_needed = false; for(ComponentList::const_iterator i=components.begin(); i!=components.end(); ++i) { @@ -175,7 +114,7 @@ void SourcePackage::create_targets() if(pc_needed) { PkgConfigFile *pc = new PkgConfigFile(builder, *this); - builder.get_target("install")->add_depend(*builder.get_toolchain().get_tool("CP").create_target(*pc)); + builder.get_target("install")->add_dependency(*builder.get_toolchain().get_tool("CP").create_target(*pc)); } } @@ -231,7 +170,7 @@ void SourcePackage::Loader::finish() { if(!i->first.compare(0, k->size(), *k)) { - const_cast(j->get_install_map()).add_mapping(obj.source/i->first, i->second); + const_cast(j->get_install_map()).add_mapping(obj.source_dir/i->first, i->second); } } } @@ -342,5 +281,5 @@ void SourcePackage::Loader::tar_file(const string &f) IO::print("%s: Note: tar_file is deprecated\n", get_source()); for(ComponentList::iterator i=obj.components.begin(); i!=obj.components.end(); ++i) if(i->get_type()==Component::TARBALL && i->get_name()=="@src") - const_cast(i->get_sources()).push_back((obj.source/f).str()); + const_cast(i->get_sources()).push_back((obj.source_dir/f).str()); }