diff options
author | Danny van Dyk <kugelfang@gentoo.org> | 2006-07-03 00:22:15 +0000 |
---|---|---|
committer | Danny van Dyk <kugelfang@gentoo.org> | 2006-07-03 00:22:15 +0000 |
commit | 37dc024f4780af5aab62c15d019758f03ab2680f (patch) | |
tree | 797afdde8ca26a96e4aded5973c6aea26d820999 /libs/Makefile.am | |
parent | Fix update action (variable name typo), and handle missing OOo dictionary.lst... (diff) | |
download | eselect-37dc024f4780af5aab62c15d019758f03ab2680f.tar.gz eselect-37dc024f4780af5aab62c15d019758f03ab2680f.tar.bz2 eselect-37dc024f4780af5aab62c15d019758f03ab2680f.zip |
2006-07-01 Danny van Dyk <kugelfang@gentoo.org>
* libs/portage.bash.in, libs/paludis.bash.in,
libs/package-manager.bash.in, libs/Makefile.am, configure.ac: Added
support for other package managers than portage. Public functions are
part of package-manager.bash. paludis.bash and portage.bash provide
private backend functions.
* modules/profile.eselect: Marked as portage-only module.
* modules/opengl.eselect, modules/binutils.eselect: Change from
inherit portage to inherit package-manager.
* modules/rc.eselect: Fix bug in list_runlevels(). Respect setting of
${svcdir} in /etc/rc.conf. Add support to show() runlevels other than
the current.
diffstat:
NEWS | 13 ++++
configure.ac | 13 ++--
libs/Makefile.am | 8 ++
libs/package-manager.bash.in | 125 +++++++++++++++++++++++++++++++++++++++++++
libs/paludis.bash.in | 43 ++++++++++++++
libs/portage.bash.in | 48 ----------------
modules/binutils.eselect | 2
modules/opengl.eselect | 2
modules/profile.eselect | 1
modules/rc.eselect | 19 ++++--
10 files changed, 211 insertions(+), 63 deletions(-)
svn path=/trunk/; revision=279
Diffstat (limited to 'libs/Makefile.am')
-rw-r--r-- | libs/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/libs/Makefile.am b/libs/Makefile.am index f1e5468..5a7e50e 100644 --- a/libs/Makefile.am +++ b/libs/Makefile.am @@ -5,6 +5,8 @@ noinst_SCRIPTS = \ manip.bash \ multilib.bash \ output.bash \ + package-manager.bash \ + paludis.bash \ path-manipulation.bash \ portage.bash \ skel.bash \ @@ -12,7 +14,11 @@ noinst_SCRIPTS = \ EXTRA_DIST = $(foreach f, $(noinst_SCRIPTS), $(f).in) -dosed = @SED@ -e 's,\@SED\@,@SED@,g' -e 's,\@PORTAGEQ\@,@PORTAGEQ@,g' -e 's,\@CANONICALISE\@,@CANONICALISE@,g' +dosed = @SED@ \ + -e 's,\@SED\@,@SED@,g' \ + -e 's,\@PALUDIS\@,@PALUDIS@,g' \ + -e 's,\@PORTAGEQ\@,@PORTAGEQ@,g' \ + -e 's,\@CANONICALISE\@,@CANONICALISE@,g' %.bash : %.bash.in @$(dosed) $< > $@ |