diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-04-08 16:42:20 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-04-08 16:42:20 +0000 |
commit | a80a786a0c5fe2804b3cae493054e4088eb71337 (patch) | |
tree | 5b793eb88fb0b7c3649971bcc08ed42e0e9e519c /sys-apps/yard | |
parent | added glib-1.2.10, ORBit-0.5.7-r1 gnome-libs-1.2.13 imlib-1.9.10 (diff) | |
download | historical-a80a786a0c5fe2804b3cae493054e4088eb71337.tar.gz historical-a80a786a0c5fe2804b3cae493054e4088eb71337.tar.bz2 historical-a80a786a0c5fe2804b3cae493054e4088eb71337.zip |
*** empty log message ***
Diffstat (limited to 'sys-apps/yard')
-rwxr-xr-x | sys-apps/yard/files/configure | 302 | ||||
-rw-r--r-- | sys-apps/yard/files/digest-yard-2.0 | 1 | ||||
-rw-r--r-- | sys-apps/yard/files/yard-2.0-Makefile.in-gentoo.diff | 50 | ||||
-rw-r--r-- | sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff | 16 | ||||
-rw-r--r-- | sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff~ | 16 | ||||
-rw-r--r-- | sys-apps/yard/files/yard-2.0-extras-Makefile.in-gentoo.diff | 13 | ||||
-rw-r--r-- | sys-apps/yard/yard-2.0.ebuild | 46 |
7 files changed, 444 insertions, 0 deletions
diff --git a/sys-apps/yard/files/configure b/sys-apps/yard/files/configure new file mode 100755 index 000000000000..1794c1be7143 --- /dev/null +++ b/sys-apps/yard/files/configure @@ -0,0 +1,302 @@ +# -*- Perl -*- +eval "exec perl -S $0 $*" + if $running_under_some_shell; +chomp($yard_version= `cat VERSION`); + +##### Edit these destination directories to your liking +##### ===> ALL OF THESE WILL BE RELATIVE TO PREFIX, IF SUPPLIED. + +# Destination for the scripts (make_root_fs, check_root_fs, etc) +$scripts_dest = "sbin"; + +# Destination for the immutable library files (original contents of +# Replacements/ and extras/). +$lib_dest = "lib/yard"; + +# Destination for the configuration and editable files. This includes +# Config.pl and Bootdisk_Contents, and everything under Replacements +$config_dest = "etc/yard"; + +# Destination for documentation files (in Doc subdirectory) +$doc_dest = "share/doc/yard-${yard_version}"; + + +############################################################################## +##### Nothing below this line should need changing +############################################################################## +require 5.002; # Need Perl >= 5.002 for all scripts +use POSIX qw(tmpnam); +use Config; +use English; +use FileHandle; + +if ($Config{'osname'} !~/linux/i) { # Just to be careful + die "You're not running Linux?!\n"; +} + +my($archname) = $Config{'archname'}; +die "Can't figure out your archname!" unless defined($archname); +# This matches i386, i486, i586... +my($arch_iX86) = $archname =~ /^i\d86-/; + +# These are to test for old bugs. Probably unnecessary, but may as +# well keep them. +test_cp(); +test_lstat(); +test_ldconfig(); + +############################################################################## +# Convert all paths to use PREFIX +############################################################################## +use Getopt::Long; +my($PREFIX); +GetOptions("prefix=s" => \$PREFIX) or + die "Something's wrong with your options: $!"; +# Don't call the user "dude" +print "PREFIX = \"$PREFIX\"\n"; + +# Prepend PREFIX onto all of these +$scripts_dest = "$PREFIX/$scripts_dest"; +$config_dest = "/$config_dest"; +$lib_dest = "$PREFIX/$lib_dest"; +$doc_dest = "$PREFIX/$doc_dest"; + +@directories = qw(scripts_dest config_dest lib_dest doc_dest); + +@output_scripts = qw(scripts/check_root_fs + scripts/create_loopback_file + scripts/create_replacements + scripts/identify_bootdisk + scripts/make_root_fs + scripts/write_rescue_disk); + +@output_others = qw(Makefile + doc/Makefile + extras/Makefile + scripts/Makefile + Config.pl + Bootdisk_Contents + yardconfig.pm + doc/yard.8 + ); + + +@necessary_progs = qw(chroot cp ln dd gunzip gzip install + ldconfig ldd make mkdir mke2fs + mount mv perl rm sync umount uname); + +@optional_progs = qw(as86 bzip2 dvips install-info latex ld86 lilo objcopy + sgml2html sgml2info sgml2latex sgml2txt tar + ); + + +# rdev is necessary on X86, optional on others (eg, m68K) +if ($arch_iX86) { + push(@necessary_progs, "rdev") +} else { + push(@optional_progs, "rdev") +} + + +@misc_substitutions = qw(configure_input yard_version); + + +@pathdirs = split(':', "$ENV{'PATH'}:/sbin/:/usr/sbin"); + +############################################################################## +##### Find and record locations of important programs +############################################################################## +foreach $prog (@necessary_progs) { + record_loc($prog, find_file_in_path($prog, 1)); +} +print "== Optional programs. Don't worry if these are not found.\n"; +foreach $prog (@optional_progs) { + record_loc($prog, find_file_in_path($prog, 0)); +} + +if (!defined($loc{'objcopy'})) { + print "Warning: objcopy not found -- unable to strip binaries.\n"; +} +print "\n"; + +############################################################################## +##### Build substitutions +############################################################################## +$substs = ""; +foreach $prog (@necessary_progs, @optional_progs) { + $substs .= "s|\\\@${prog}\\\@|$loc{$prog}|gi;\n"; } +foreach $var (@directories, @misc_substitutions) { + $substs .= "s|\\\@${var}\\\@|\$$var|gi;\n"} + +##### Substitute into scripts +foreach $script (@output_scripts, @output_others) { + print "Creating $script\n"; + $source = "${script}.in"; + if (!open(SOURCE, $source)) { print "$source: $!\n"; next }; + if (!open(DEST, ">$script")) { print "Writing $script: $!\n"; next }; + $configure_input = "This script created automatically from $source"; + while (<SOURCE>) { + eval $substs if /\@/; + print DEST; + } + close(DEST) or print "Closing $script: $!"; + close(SOURCE) or print "Closing $source: $!"; +} + +##### Make the scripts executable +chmod(0755, @output_scripts); + +# From the doc subdirectory Makefile: +my($manfile_dest) = cleanup_link("$doc_dest/../../man/man8"); + +print "\nSummary of destinations (PREFIX = \"$PREFIX\"):\n"; +print "\tExecutables:\t\t$scripts_dest\n"; +print "\tConfiguration files:\t$config_dest\n"; +print "\tVarious library files:\t$lib_dest\n"; +print "\tMain documentation:\t$doc_dest\n"; +print "\tMan pages:\t\t$manfile_dest\n"; + +print "Done.\n"; +exit; + +############################################################################## + +sub find_file_in_path { + my($file, $necessary) = @_; + print "Looking for $file..."; + + if ($file =~ m|/|) { + ##### Absolute + if (-e $file) { + print "Found it\n"; + return($file); + } + + } else { + ##### Relative filename, search for it + foreach $path (@pathdirs) { + $abs_file = "$path/$file"; + if (-e $abs_file) { + print "$abs_file\n"; + return $abs_file; + } + } + } + + print "NOT FOUND\n"; + if ($necessary) { + print "$file is necessary, cannot continue.\n", + "Install it or fix your PATH so I can find it.\n"; + die("\n"); + } + undef +} + + +sub record_loc { + my($prog, $loc) = @_; + $loc{$prog} = defined($loc) ? $loc : ""; +} + + +##### Check the cp command. It's broken in fileutils 3.13. +sub test_cp { + print "Checking your version of cp..."; + my($dirname) = tmpnam(); + my($filename) = tmpnam(); + + my($setup_problem) = system("mkdir $dirname") || + system("touch $filename"); + if (!$setup_problem) { + if (system("cp --parents -R $filename $dirname")) { + + print "\n***** Your cp command is broken and can't be used with Yard.\n"; + print "***** Read the file doc/Broken_cp which explains", + " how to fix it.\n"; + exit; + + } else { + print "OK\n"; + system("rm -rf $dirname $filename"); + } + } else { + die "Problem in setting up test_cp in /tmp !!"; + } +} + + +sub test_lstat { + # Create a temp file + my($file) = tmpnam(); + open(X, ">$file") or die "Can't create $file!\n"; + close(X); + # Try to set up a symlink to it + my($link) = tmpnam(); + if (!symlink($file, $link)) { + print "Can't symlink $link -> $file ?!?!\n"; + print "Something's wrong!\n"; + unlink($file); + die; + + } elsif (!-l $link) { # Test the -l operator on the link + print "ERROR: Your perl can't recognize symlinks with -l\n", + "\$Config{\"d_lstat\"} = \"$Config{'d_lstat'}\"\n", + "Yard may not work properly.\n", + "See doc/Broken_lstat for further information.\n"; + unlink($file, $link); + exit; + + } else { # Probably unnecessary, but test lstat too. + my($stat) = join(',', stat($link)); + my($lstat) = join(',', lstat($link)); + + if ($stat eq $lstat) { + print "ERROR: lstat is broken in this perl\n", + "(both stat and lstat returned the same info on a link)\n", + "\$Config{\"d_lstat\"} = \"$Config{'d_lstat'}\"\n", + "Yard may not work properly.\n", + "See doc/Broken_lstat for further information.\n"; + unlink($file, $link); + exit; + + } else { + print "Both lstat and -l seem to work -- good\n"; + unlink($file, $link); + } + } +} + +sub test_ldconfig { + # ldconfig, when given an option it doesn't understand, outputs + # a usage summary and options to STDERR. The 2>&1 captures this. + my($ldconfig_help) = scalar(`ldconfig --help 2>&1`); + if (($CHILD_ERROR >> 8) == 127) { + print "ERROR, cannot execute ldconfig. Please put it in your path.\n"; + exit; + + } elsif (($CHILD_ERROR ) != 0) { + print "ERROR, trouble with ldconfig. Maybe it's very old?\n"; + exit; + + } elsif ($ldconfig_help =~ /\-r\sROOT/m) { + print "Your ldconfig accepts a -r option -- good.\n"; + + } else { + print "ERROR, your ldconfig does not have a -r (chroot) option.\n", + "Please upgrade to a newer version that has this option.\n", + "Yard now depends upon it.\n"; + exit; + } +} + + +# This was taken from yard_utils.pl, but we don't want to load the whole file. +sub cleanup_link { + my($link) = @_; + # Collapse all occurrences of /./ + 1 while $link =~ s|/\./|/|g; + # Cancel occurrences of /somedir/../ + # Make sure somedir isn't ".." + 1 while $link =~ s|/(?!\.\.)[^/]+/\.\./|/|g; + $link +} diff --git a/sys-apps/yard/files/digest-yard-2.0 b/sys-apps/yard/files/digest-yard-2.0 new file mode 100644 index 000000000000..41f5511082f8 --- /dev/null +++ b/sys-apps/yard/files/digest-yard-2.0 @@ -0,0 +1 @@ +MD5 c2d115e0a12945b6057a30e2c47532ae yard-2.0.tar.gz diff --git a/sys-apps/yard/files/yard-2.0-Makefile.in-gentoo.diff b/sys-apps/yard/files/yard-2.0-Makefile.in-gentoo.diff new file mode 100644 index 000000000000..82552ee09324 --- /dev/null +++ b/sys-apps/yard/files/yard-2.0-Makefile.in-gentoo.diff @@ -0,0 +1,50 @@ +--- Makefile.in.orig Sun Apr 8 18:30:01 2001 ++++ Makefile.in Sun Apr 8 18:31:35 2001 +@@ -44,34 +44,34 @@ + cd doc ; make man + + install: +- $(INSTALL) -d $(scripts_dest) $(lib_dest) $(config_dest) $(doc_dest) +- cd scripts ; $(INSTALL) -o root -m 655 $(SCRIPTS) $(scripts_dest) ++ $(INSTALL) -d $(DESTDIR)/$(scripts_dest) $(DESTDIR)/$(lib_dest) $(DESTDIR)/$(config_dest) $(DESTDIR)/$(doc_dest) ++ cd scripts ; $(INSTALL) -o root -m 655 $(SCRIPTS) $(DESTDIR)/$(scripts_dest) + cd extras ; make install + cd doc ; make install +- $(INSTALL_DATA) -o root yard_utils.pl yardconfig.pm $(lib_dest) ++ $(INSTALL_DATA) -o root yard_utils.pl yardconfig.pm $(DESTDIR)/$(lib_dest) + $(INSTALL_DATA) -o root Bootdisk_Contents \ +- Bootdisk_Contents.{minimal,sample,Pilotbackup} $(lib_dest) +- $(INSTALL_DATA) -o root Config.pl $(lib_dest) ++ Bootdisk_Contents.{minimal,sample,Pilotbackup} $(DESTDIR)/$(lib_dest) ++ $(INSTALL_DATA) -o root Config.pl $(DESTDIR)/$(lib_dest) + # Install create_replacements as a lib script. + # We need access to it but it shouldn't be visible to the user. +- cd scripts; $(INSTALL) -o root -m 655 create_replacements $(lib_dest) +- $(CP) --parents `cat Replacements/ALL_REPLACEMENT_FILES` $(lib_dest) ++ cd scripts; $(INSTALL) -o root -m 655 create_replacements $(DESTDIR)/$(lib_dest) ++ $(CP) --parents `cat Replacements/ALL_REPLACEMENT_FILES` $(DESTDIR)/$(lib_dest) + @echo Done. You should now type \"make customize\" to create + @echo customizable files, if you don\'t already have them. + + customize: +- $(INSTALL) -d $(config_dest)/Replacements/etc +- $(INSTALL) -d $(config_dest)/Replacements/root ++ $(INSTALL) -d $(DESTDIR)/$(config_dest)/Replacements/etc ++ $(INSTALL) -d $(DESTDIR)/$(config_dest)/Replacements/root + # create_replacements puts files into config_dest +- $(lib_dest)/create_replacements ++ $(DESTDIR)/$(lib_dest)/create_replacements + @echo ! + @echo ! Now installing configuration files, which may already exist. + @echo ! Answer \'no\' if you want to preserve your + @echo ! existing configuration. + @echo ! +- $(CP) -ir $(lib_dest)/Replacements $(config_dest) +- $(CP) -ir $(lib_dest)/Bootdisk_Contents $(config_dest) +- $(CP) -ir $(lib_dest)/Config.pl $(config_dest) ++ $(CP) -ir $(DESTDIR)/$(lib_dest)/Replacements $(DESTDIR)/$(config_dest) ++ $(CP) -ir $(DESTDIR)/$(lib_dest)/Bootdisk_Contents $(DESTDIR)/$(config_dest) ++ $(CP) -ir $(DESTDIR)/$(lib_dest)/Config.pl $(DESTDIR)/$(config_dest) + + test: + $(CP) -r tests/Bootdisk_Contents.errors1 Bootdisk_Contents diff --git a/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff b/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff new file mode 100644 index 000000000000..aabf68034a5a --- /dev/null +++ b/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff @@ -0,0 +1,16 @@ +--- doc/Makefile.in~ Mon May 15 00:55:57 2000 ++++ doc/Makefile.in Sun Apr 8 18:06:05 2001 +@@ -55,10 +55,10 @@ + man: yard.8 + + install: +- $(INSTALL) --directory $(doc_dest) $(manfile_dest) +- $(INSTALL) --group=man --mode=444 yard.8 $(manfile_dest) ++ $(INSTALL) --directory $(DESTDIR)/$(doc_dest) $(DESTDIR)$(manfile_dest) ++ $(INSTALL) --group=man --mode=444 yard.8 $(DESTDIR)$(manfile_dest) + for i in $(MANPAGES);\ +- do $(LN) -f $(manfile_dest)/yard.8 $(manfile_dest)/$$i; done ++ do $(LN) -fs yard.8 $(DESTDIR)/$(manfile_dest)/$$i; done + + clean: + $(RM) -f *.log *~ *.~ .*~ *.*.~ *.OLD *.ls \#* *.bak diff --git a/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff~ b/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff~ new file mode 100644 index 000000000000..7c6252d16287 --- /dev/null +++ b/sys-apps/yard/files/yard-2.0-doc-Makefile.in-gentoo.diff~ @@ -0,0 +1,16 @@ +--- doc/Makefile.in~ Mon May 15 00:55:57 2000 ++++ doc/Makefile.in Sun Apr 8 18:06:05 2001 +@@ -55,10 +55,10 @@ + man: yard.8 + + install: +- $(INSTALL) --directory $(doc_dest) $(manfile_dest) +- $(INSTALL) --group=man --mode=444 yard.8 $(manfile_dest) ++ $(INSTALL) --directory $(DESTDIR)/$(doc_dest) $(DESTDIR)$(manfile_dest) ++ $(INSTALL) --group=man --mode=444 yard.8 $(DESTDIR)$(manfile_dest) + for i in $(MANPAGES);\ +- do $(LN) -f $(manfile_dest)/yard.8 $(manfile_dest)/$$i; done ++ do $(LN) -f yard.8 $(DESTDIR)/$(manfile_dest)/$$i; done + + clean: + $(RM) -f *.log *~ *.~ .*~ *.*.~ *.OLD *.ls \#* *.bak diff --git a/sys-apps/yard/files/yard-2.0-extras-Makefile.in-gentoo.diff b/sys-apps/yard/files/yard-2.0-extras-Makefile.in-gentoo.diff new file mode 100644 index 000000000000..d833a1d75c63 --- /dev/null +++ b/sys-apps/yard/files/yard-2.0-extras-Makefile.in-gentoo.diff @@ -0,0 +1,13 @@ +--- extras/Makefile.in~ Mon May 15 00:55:57 2000 ++++ extras/Makefile.in Sun Apr 8 18:00:49 2001 +@@ -36,8 +36,8 @@ + + + install: +- $(INSTALL) -d $(lib_dest)/extras +- $(INSTALL_DATA) -o root $(INSTALLED_EXTRAS) $(lib_dest)/extras ++ $(INSTALL) -d $(DESTDIR)/$(lib_dest)/extras ++ $(INSTALL_DATA) -o root $(INSTALLED_EXTRAS) $(DESTDIR)/$(lib_dest)/extras + + clean: + $(RM) -f *.log *~ *.~ .*~ *.*.~ *.OLD *.ls \#* *.bak *.img diff --git a/sys-apps/yard/yard-2.0.ebuild b/sys-apps/yard/yard-2.0.ebuild new file mode 100644 index 000000000000..f7c1afaec851 --- /dev/null +++ b/sys-apps/yard/yard-2.0.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/sys-apps/yard/yard-2.0.ebuild,v 1.1 2001/04/08 16:42:20 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="Yard is a suite of Perl scripts for creating rescue disks (also +called bootdisks) for Linux." +SRC_URI="http://www.croftj.net/~fawcett/yard/${A}" +HOMEPAGE="http://www.croftj.net/~fawcett/yard/" + +src_unpack() { + unpack ${A} + cd ${S} + cp ${FILESDIR}/configure . + #cp Makefile.in makefile.in.orig + patch -p0 < ${FILESDIR}/${P}-Makefile.in-gentoo.diff + patch -p0 < ${FILESDIR}/${P}-doc-Makefile.in-gentoo.diff + patch -p0 < ${FILESDIR}/${P}-extras-Makefile.in-gentoo.diff +} + +src_compile() { + + cd ${S} + try ./configure --prefix=/usr + try make + +} + +src_install () { + + cd ${S} + try make DESTDIR=${D} install customize + cd doc + docinto txt + dodoc *.txt Broken* + docinto html + dodoc *.html + docinto sgml + dodoc *.sgml + docinto print + gunzip *.ps.gz + dodoc *.ps +} + |