dev-util/makepp: Drop old (EAPI 0)
authorMichał Górny <mgorny@gentoo.org>
Fri, 4 Oct 2019 21:16:39 +0000 (23:16 +0200)
committerMichał Górny <mgorny@gentoo.org>
Fri, 4 Oct 2019 21:35:06 +0000 (23:35 +0200)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
dev-util/makepp/Manifest
dev-util/makepp/files/makepp-1.18-install.patch [deleted file]
dev-util/makepp/makepp-1.18.ebuild [deleted file]

index 2c8e625c9eb7b3780c7fa0ab66e6504e4b20becc..2d6ad6bad61f5a588d46cf1853559a785f46956b 100644 (file)
@@ -1,3 +1,2 @@
-DIST makepp-1.18.tar.gz 236990 BLAKE2B 4f2c894a706fd188eeeae4422ac828cd99cccb2e8f6b7280a2be55363b99f4fff011932f3dfd550062e932f5c90ddc7f41fd56cb5e765c694b7296ac7f7beb1c SHA512 e6d4fe2d8136bbbbec00401761bf5a4bf5ff15357e75080b942188a613b8156c67eac63f46ce89f1e521997ca620f22924dd0b9055dcb66e30801142dab4e0a9
 DIST makepp-2.0.99.1.txz 532784 BLAKE2B e69495f0ffece81e7b15b668eea8bf4f9a26a36332bd1644594d697dd2301bea4bb2340fcd2805a33c44824113149fc617db610e6624900ec9d0d77054658d8c SHA512 457d64a2e9d2860dc2f7ad1bd4ef7df9fcd1563878dcd7b63e6f1d3fd6c03cdb89aab68faa018b3ef6b3009733a365fadbb49ad6c8a03ffe6eafcf867b765213
 DIST makepp-2.0.99.2.txz 528968 BLAKE2B e39c5fa515a1579ef5a568385550e8baf9176eac4a1871cdb7971ca8d3f92bfda73e5f27f4cf00c148a2c5c9622dd8253ebba0f555c6d46ce8c3581678bf8e68 SHA512 5aa8d255e545705802fec6ca304b2c672dfb9c59f7a064a5e9c4ef98f52d7dd5628023fe2a2449126ac1f9cc6ba7bac98233e3e4f07dd8a0559fd8aea7fd24a4
diff --git a/dev-util/makepp/files/makepp-1.18-install.patch b/dev-util/makepp/files/makepp-1.18-install.patch
deleted file mode 100644 (file)
index 7d90e21..0000000
+++ /dev/null
@@ -1,69 +0,0 @@
---- install.pl.orig    2003-02-18 13:15:15.000000000 -0800
-+++ install.pl 2003-02-18 13:49:10.000000000 -0800
-@@ -31,9 +31,24 @@
- #
- # Now figure out where everything goes:
- #
--$prefix = "/usr/local";
-+$prefix = shift(@ARGV) ||
-+      read_with_prompt( "
-+You can specify a prefix directory that will simplify defaults for
-+further questions.
-+
-+What should be the prefix directory [$prefix]? ") ||
-+      "/usr/local";
-+
-+$inst_prefix = shift(@ARGV) ||
-+      read_with_prompt( "
-+You can specify an install prefix that is prefixed to the runtime
-+prefix for the install phase only.  This is useful when installing
-+into staging directories for packaging systems.
--$bindir = shift(@_) ||
-+What should the install prefix be []? ") ||
-+      "";
-+
-+$bindir = shift(@ARGV) ||
-   read_with_prompt("
- Makepp needs to know where you want to install it and its data files.
- makepp is written in perl, but there is no particular reason to install
-@@ -43,10 +58,7 @@
- Where should the makepp executable be installed [$prefix/bin]? ") ||
-   "$prefix/bin";
--$bindir =~ m@(.*)/bin@ and $prefix = $1;
--                              # See if a prefix was specified.
--
--$datadir = shift @_ || read_with_prompt("
-+$datadir = shift @ARGV || read_with_prompt("
- Makepp has a number of library files that it needs to install somewhere.  Some
- of these are perl modules, but they can't be used by other perl programs, so
- there's no point in installing them in the perl modules hierarchy; they are
-@@ -55,14 +67,24 @@
- Where should the library files be installed [$prefix/share/makepp]? ") ||
-   "$prefix/share/makepp";
--$htmldir = shift @_ || read_with_prompt("
-+$htmldir = shift @ARGV || read_with_prompt("
- Where should the HTML documentation be installed?
- Enter \"none\" if you do not want any documentation installed.
- HTML documentation directory [$prefix/share/makepp/html]: ") ||
-   "$prefix/share/makepp/html";
--substitute_file("makepp", $bindir, 0755);
--substitute_file("recursive_makepp", $datadir, 0644);
-+substitute_file("makepp", "$inst_prefix/$bindir", 0755);
-+substitute_file("recursive_makepp", "$inst_prefix/$datadir", 0644);
-+
-+if( $inst_prefix ) {
-+      $bindir = join( '/', $inst_prefix, $bindir );
-+      $datadir = join( '/', $inst_prefix, $datadir );
-+      $htmldir = join( '/', $inst_prefix, $htmldir );
-+}
-+
-+print STDERR "bindir now $bindir\n";
-+print STDERR "datadir now $datadir\n";
-+print STDERR "htmldir now $htmldir\n";
- make_dir("$datadir/Signature");
- foreach $module (qw(FileInfo FileInfo_makepp MakeEvent Glob Makefile Makesubs Rule
diff --git a/dev-util/makepp/makepp-1.18.ebuild b/dev-util/makepp/makepp-1.18.ebuild
deleted file mode 100644 (file)
index a5cef1c..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=0
-
-inherit eutils
-
-DESCRIPTION="GNU make replacement"
-HOMEPAGE="http://makepp.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha ~ppc ~sparc ~x86"
-IUSE=""
-DEPEND=">=dev-lang/perl-5.6.0"
-
-src_unpack() {
-       unpack ${A}
-       cd "${S}"
-       epatch "${FILESDIR}"/${P}-install.patch
-       # There is a sandbox violation in this test.
-       # In future versions, this ebuild should try to find
-       # a better way of avoiding this, but the current version
-       # appears to have garbage NUL characters all over the test files,
-       # making them complicated to edit.
-       # Robert Coie <rac@gentoo.org> 2002.02.18
-       rm "${S}"/makepp_tests/include.test
-}
-
-src_compile() {
-       make test || die
-}
-
-src_install() {
-       perl install.pl /usr "${D}" /usr/bin /usr/share/makepp /usr/share/doc/makepp
-}