71 lines
3.2 KiB
C++
71 lines
3.2 KiB
C++
/* vim: set sw=4 sts=4 et foldmethod=syntax : */
|
|
|
|
/*
|
|
* Copyright (c) 2008, 2009, 2010, 2011 Ciaran McCreesh
|
|
*
|
|
* This file is part of the Paludis package manager. Paludis is free software;
|
|
* you can redistribute it and/or modify it under the terms of the GNU General
|
|
* Public License version 2, as published by the Free Software Foundation.
|
|
*
|
|
* Paludis is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
* details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, write to the Free Software Foundation, Inc., 59 Temple
|
|
* Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
#ifndef PALUDIS_GUARD_PALUDIS_PALUDIS_REPOSITORIES_E_EXTRA_DISTRIBUTION_DATA_HH
|
|
#define PALUDIS_GUARD_PALUDIS_PALUDIS_REPOSITORIES_E_EXTRA_DISTRIBUTION_DATA_HH 1
|
|
|
|
#include <paludis/distribution-fwd.hh>
|
|
#include <paludis/util/fs_path.hh>
|
|
#include <paludis/util/named_value.hh>
|
|
#include <paludis/util/set.hh>
|
|
#include <memory>
|
|
#include <string>
|
|
|
|
namespace paludis
|
|
{
|
|
namespace n
|
|
{
|
|
typedef Name<struct name_default_buildroot> default_buildroot;
|
|
typedef Name<struct name_default_distdir> default_distdir;
|
|
typedef Name<struct name_default_eapi_when_unknown> default_eapi_when_unknown;
|
|
typedef Name<struct name_default_eapi_when_unspecified> default_eapi_when_unspecified;
|
|
typedef Name<struct name_default_layout> default_layout;
|
|
typedef Name<struct name_default_manifest_hashes> default_manifest_hashes;
|
|
typedef Name<struct name_default_names_cache> default_names_cache;
|
|
typedef Name<struct name_default_profile_eapi> default_profile_eapi;
|
|
typedef Name<struct name_default_profile_layout> default_profile_layout;
|
|
typedef Name<struct name_default_thin_manifests> default_thin_manifests;
|
|
typedef Name<struct name_default_write_cache> default_write_cache;
|
|
typedef Name<struct name_news_directory> news_directory;
|
|
}
|
|
|
|
namespace erepository
|
|
{
|
|
struct EDistribution
|
|
{
|
|
NamedValue<n::default_buildroot, std::string> default_buildroot;
|
|
NamedValue<n::default_distdir, std::string> default_distdir;
|
|
NamedValue<n::default_eapi_when_unknown, std::string> default_eapi_when_unknown;
|
|
NamedValue<n::default_eapi_when_unspecified, std::string> default_eapi_when_unspecified;
|
|
NamedValue<n::default_layout, std::string> default_layout;
|
|
NamedValue<n::default_manifest_hashes, std::shared_ptr<const Set<std::string> > > default_manifest_hashes;
|
|
NamedValue<n::default_names_cache, std::string> default_names_cache;
|
|
NamedValue<n::default_profile_eapi, std::string> default_profile_eapi;
|
|
NamedValue<n::default_profile_layout, std::string> default_profile_layout;
|
|
NamedValue<n::default_thin_manifests, bool> default_thin_manifests;
|
|
NamedValue<n::default_write_cache, std::string> default_write_cache;
|
|
NamedValue<n::news_directory, FSPath> news_directory;
|
|
};
|
|
|
|
typedef ExtraDistributionData<EDistribution> EExtraDistributionData;
|
|
}
|
|
}
|
|
|
|
#endif
|