app-text/htmlinc: Port to EAPI 7
authorDavid Seifert <soap@gentoo.org>
Sun, 18 Aug 2019 13:04:30 +0000 (15:04 +0200)
committerDavid Seifert <soap@gentoo.org>
Sun, 18 Aug 2019 13:06:00 +0000 (15:06 +0200)
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
app-text/htmlinc/Manifest
app-text/htmlinc/files/htmlinc-1.0_beta1-fix-build-system.patch [new file with mode: 0644]
app-text/htmlinc/htmlinc-1.0_beta1-r2.ebuild

index 142fe80d71dfc5619da988b338b50b0cb007ab83..625afb5d3f71a73fc00b5cda766e313935320219 100644 (file)
@@ -1 +1 @@
-DIST htmlinc.tar.gz 17042 BLAKE2B 07c9333599876c17846dec8d40c0eba31f1f9321cfa463e4c5dd2698a120c878c6b2d0e6593eb78d22a15fa5333e0fb26ed064a9cccf6b95641cd9a7e3a13a53 SHA512 2bdb7a5df4a8152d9a23f7b740995bd565e92998ef199cfb7d08b1f5e8ae4390c5179f78da71dfa4b7ce18a2a0bfe6002d465b0fa8d860a25afdec5eb4f3ee4c
+DIST htmlinc-1.0_beta1.tar.gz 17042 BLAKE2B 07c9333599876c17846dec8d40c0eba31f1f9321cfa463e4c5dd2698a120c878c6b2d0e6593eb78d22a15fa5333e0fb26ed064a9cccf6b95641cd9a7e3a13a53 SHA512 2bdb7a5df4a8152d9a23f7b740995bd565e92998ef199cfb7d08b1f5e8ae4390c5179f78da71dfa4b7ce18a2a0bfe6002d465b0fa8d860a25afdec5eb4f3ee4c
diff --git a/app-text/htmlinc/files/htmlinc-1.0_beta1-fix-build-system.patch b/app-text/htmlinc/files/htmlinc-1.0_beta1-fix-build-system.patch
new file mode 100644 (file)
index 0000000..3d0fff8
--- /dev/null
@@ -0,0 +1,33 @@
+--- a/Makefile
++++ b/Makefile
+@@ -1,28 +1,9 @@
+-CC=g++
+-INSTDIR=/usr/local/bin
+-CFLAGS=-Wall
+-STRINGLIB=bytevector.o stringlist.o
+-
+-htmlinc :htmlinc.o
+-      $(CC) $(STRINGLIB) htmlinc.o -o htmlinc $(CFLAGS)
+-
+-htmlinc.o: htmlinc.cc stringlist.o bytevector.o 
+-      $(CC) -c htmlinc.cc $(CFLAGS)
++htmlinc: bytevector.o stringlist.o
+ headers: text2h 
+       text2h help <help.txt >help.h 
+-text2h: text2h.o bytevector.o stringlist.o 
+-      $(CC) $(STRINGLIB) text2h.o -o text2h $(CFLAGS)
+-
+-text2h.o: text2h.cc
+-      $(CC) -c text2h.cc $(CFLAGS)
+-
+-bytevector.o: bytevector.h bytevector.cc
+-      ${CC} -c bytevector.cc $(CFLAGS)
+-
+-stringlist.o: bytevector.o stringlist.h stringlist.cc
+-      $(CC) -c stringlist.cc $(CFLAGS)
++text2h: bytevector.o stringlist.o
+ clean:
+       rm *.o text2h htmlinc
index 694412759ced0f43e00f1a3889d643d1d7d5f45e..a2d1afc50502c35f830be4f3fcf29e572a7adcf4 100644 (file)
@@ -1,37 +1,30 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
-inherit eutils toolchain-funcs
+inherit flag-o-matic toolchain-funcs
 
 DESCRIPTION="HTML Include System by Ulli Meybohm"
 HOMEPAGE="http://www.meybohm.de/"
-SRC_URI="http://meybohm.de/files/${PN}.tar.gz"
+SRC_URI="mirror://gentoo/${PN}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~ppc sparc x86 ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
 
-S=${WORKDIR}/htmlinc
+S="${WORKDIR}/${PN}"
+PATCHES=(
+       "${FILESDIR}"/${PN}-gcc3-gentoo.patch
+       "${FILESDIR}"/${P}-fix-build-system.patch
+)
 
-src_prepare() {
-       epatch "${FILESDIR}"/htmlinc-gcc3-gentoo.patch
-       sed -i Makefile \
-               -e 's| -o | $(LDFLAGS)&|g' \
-               || die "sed Makefile"
-}
-
-src_compile() {
-       # This is C++ not C source
-       emake \
-               CC=$(tc-getCXX) \
-               CFLAGS="${CXXFLAGS} -Wall" \
-               LDFLAGS="${LDFLAGS}"
+src_configure() {
+       tc-export CXX
+       append-cxxflags -Wall
 }
 
 src_install() {
        dobin htmlinc
-       dodoc README
+       einstalldocs
 }