mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-23 16:49:10 -07:00
dev-lang/icon: Drop old versions
Dropping stable ppc, ppc64, and hppa keywords since there are no known users and no reverse dependencies. Closes: https://bugs.gentoo.org/652178
This commit is contained in:
@@ -1,3 +1 @@
|
||||
DIST icon-v950src.tgz 3115766 BLAKE2B e3dcd0abe76a3d7fe387d1273d8bebadf854dc5cc120b520968d5a5e4970eb63c5142c14ddedbcfcac4e99f372bdc6be8c65f038eb8f38f746ea65a1f7764ba8 SHA512 32f01ca65863525d92846b505ea61f6fbad5a11991d0476c5e79647459dee12746b4448f8d32f2766c198b6713587e48eb0f7f2a942ce42a929f080a85039fa3
|
||||
DIST icon-v951src.tgz 3133040 BLAKE2B 790a66a8210c1b9c55514a560590f08d3e52d7c5115d60554183f1118b5705fc1754b8188dcc3b5b739318374d568b6eafc1e3c4266de5416709e7ce6056925b SHA512 032dc9cfa57af5af2eb84b2116d0537124b5efb87b7cf744ecace2ccf49e461d5be5f91df99d85e8a988520d144fe4ecf06a6e78f7fff997b78afa95355449ad
|
||||
DIST icon.v943src.tgz 3218627 BLAKE2B 50ac22659a74adaf8462b75272592465d7bd78d23ebe7f67b362181c777517646806cea6a6c5d8a8fdb904098a5f07d6d630f01c2bf58c258a11401c0263c7da SHA512 9f89c7f1aaea1caea586aeb1ef74346a0f258c26ae74581a9ce7b59c2b590eb79316bdb9530b70d9af59ad06e6c444eec92016d0e5b015f4d467bde0baac2695
|
||||
|
||||
@@ -1,62 +0,0 @@
|
||||
--- icon.v943src/ipl/cfuncs/Makefile
|
||||
+++ icon.v943src/ipl/cfuncs/Makefile
|
||||
@@ -25,7 +25,7 @@
|
||||
# library
|
||||
|
||||
$(FUNCLIB): $(FUNCS) mklib.sh
|
||||
- CC="$(CC)" CFLAGS="$(CFLAGS)" sh mklib.sh $(FUNCLIB) $(FUNCS)
|
||||
+ CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" sh mklib.sh $(FUNCLIB) $(FUNCS)
|
||||
$(FUNCS): icall.h
|
||||
|
||||
|
||||
--- icon.v943src/ipl/cfuncs/mklib.sh
|
||||
+++ icon.v943src/ipl/cfuncs/mklib.sh
|
||||
@@ -11,7 +11,7 @@
|
||||
set -x
|
||||
case "$SYS" in
|
||||
Linux*|*BSD*|GNU*)
|
||||
- gcc -shared -o $LIBNAME -fPIC "$@";;
|
||||
+ $CC -shared -o $LIBNAME $CFLAGS $LDFLAGS -fPIC "$@";;
|
||||
Darwin*)
|
||||
cc -bundle -undefined suppress -flat_namespace -o $LIBNAME "$@";;
|
||||
SunOS*)
|
||||
--- icon.v943src/src/common/Makefile
|
||||
+++ icon.v943src/src/common/Makefile
|
||||
@@ -8,7 +8,7 @@
|
||||
common: doincl $(OBJS) gpxmaybe
|
||||
|
||||
doincl: doincl.c ../h/arch.h
|
||||
- $(CC) $(CFLAGS) -o doincl doincl.c
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o doincl doincl.c
|
||||
-./doincl -o ../../bin/rt.h ../h/rt.h
|
||||
|
||||
patchstr: patchstr.c
|
||||
@@ -29,7 +29,7 @@
|
||||
../h/typedefs.h ../h/mproto.h ../h/cpuconf.h
|
||||
|
||||
../h/arch.h: infer.c
|
||||
- $(CC) $(CFLAGS) -o infer infer.c
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o infer infer.c
|
||||
./infer >../h/arch.h
|
||||
|
||||
identify.o: ../h/version.h
|
||||
@@ -46,7 +46,7 @@
|
||||
|
||||
# for rswitch, $(CFLAGS) is deliberately omitted (-O may cause problems)
|
||||
rswitch.o: ../h/define.h ../h/arch.h $(RSW)
|
||||
- $(CC) -c $(RSW)
|
||||
+ $(CC) $(CFLAGS) -O0 -c $(RSW)
|
||||
|
||||
|
||||
# The following section is needed if changes are made to the Icon grammar,
|
||||
--- icon.v943src/src/runtime/Makefile
|
||||
+++ icon.v943src/src/runtime/Makefile
|
||||
@@ -39,7 +39,7 @@
|
||||
|
||||
iconx: $(OBJS)
|
||||
cd ../common; $(MAKE)
|
||||
- $(CC) $(RLINK) -o iconx $(OBJS) $(XL) $(RLIBS) $(TL)
|
||||
+ $(CC) $(LDFLAGS) $(RLINK) -o iconx $(OBJS) $(XL) $(RLIBS) $(TL)
|
||||
cp iconx ../../bin
|
||||
strip $(SFLAGS) ../../bin/iconx$(EXE)
|
||||
|
||||
@@ -1,75 +0,0 @@
|
||||
--- icon-v950src/ipl/cfuncs/Makefile
|
||||
+++ icon-v950src/ipl/cfuncs/Makefile
|
||||
@@ -25,7 +25,7 @@
|
||||
# library
|
||||
|
||||
$(FUNCLIB): $(FUNCS) mklib.sh
|
||||
- CC="$(CC)" CFLAGS="$(CFLAGS)" BIN="../../bin" \
|
||||
+ CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" BIN="../../bin" \
|
||||
sh mklib.sh $(FUNCLIB) $(FUNCS)
|
||||
$(FUNCS): icall.h
|
||||
|
||||
--- icon-v950src/ipl/cfuncs/mklib.sh
|
||||
+++ icon-v950src/ipl/cfuncs/mklib.sh
|
||||
@@ -12,7 +12,7 @@
|
||||
set -x
|
||||
case "$SYS" in
|
||||
Linux*|*BSD*|GNU*)
|
||||
- $CC -shared -o $LIBNAME -fPIC "$@";;
|
||||
+ $CC -shared -o $LIBNAME $CFLAGS $LDFLAGS -fPIC "$@";;
|
||||
CYGWIN*)
|
||||
# move the win32 import library for iconx.exe callbacks
|
||||
# created when iconx.exe was built
|
||||
--- icon-v950src/ipl/packs/loadfunc/Makefile
|
||||
+++ icon-v950src/ipl/packs/loadfunc/Makefile
|
||||
@@ -28,7 +28,7 @@
|
||||
echo '$$define FUNCLIB "./$(FUNCLIB)"' >libnames.icn
|
||||
|
||||
$(FUNCLIB): $(FUNCS)
|
||||
- CC="$(CC)" CFLAGS="$(CFLAGS)" BIN="../../../bin" \
|
||||
+ CC="$(CC)" CFLAGS="$(CFLAGS)" LDFLAGS="$(LDFLAGS)" BIN="../../../bin" \
|
||||
sh $(MKLIB) $(FUNCLIB) $(FUNCS)
|
||||
|
||||
|
||||
--- icon-v950src/src/common/Makefile
|
||||
+++ icon-v950src/src/common/Makefile
|
||||
@@ -8,7 +8,7 @@
|
||||
common: $(OBJS) gpxmaybe
|
||||
|
||||
patchstr: patchstr.c
|
||||
- $(CC) $(CFLAGS) -o patchstr patchstr.c
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o patchstr patchstr.c
|
||||
|
||||
gpxmaybe:
|
||||
-if [ "x$(XL)" != "x" ]; then $(MAKE) $(GDIR); fi
|
||||
@@ -25,7 +25,7 @@
|
||||
../h/typedefs.h ../h/mproto.h ../h/cpuconf.h
|
||||
|
||||
../h/arch.h: infer.c
|
||||
- $(CC) $(CFLAGS) -o infer infer.c
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o infer infer.c
|
||||
./infer >../h/arch.h
|
||||
|
||||
identify.o: ../h/version.h
|
||||
--- icon-v950src/src/rtt/Makefile
|
||||
+++ icon-v950src/src/rtt/Makefile
|
||||
@@ -22,7 +22,7 @@
|
||||
|
||||
|
||||
rtt: $(OBJ)
|
||||
- $(CC) $(LDFLAGS) -o rtt $(OBJ)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) -o rtt $(OBJ)
|
||||
|
||||
library: $(OBJ)
|
||||
rm -rf rtt.a
|
||||
--- icon-v950src/src/runtime/Makefile
|
||||
+++ icon-v950src/src/runtime/Makefile
|
||||
@@ -30,7 +30,7 @@
|
||||
|
||||
iconx: $(COBJS) $(XOBJS)
|
||||
cd ../common; $(MAKE)
|
||||
- $(CC) $(RLINK) -o iconx $(XOBJS) $(COBJS) $(XL) $(RLIBS) $(TLIBS)
|
||||
+ $(CC) $(CFLAGS) $(LDFLAGS) $(RLINK) -o iconx $(XOBJS) $(COBJS) $(XL) $(RLIBS) $(TLIBS)
|
||||
cp iconx ../../bin
|
||||
strip $(SFLAGS) ../../bin/iconx$(EXE)
|
||||
|
||||
@@ -1,113 +0,0 @@
|
||||
diff -uprN icon.v943src_base/tests/general/io.icn icon.v943src/tests/general/io.icn
|
||||
--- icon.v943src_base/tests/general/io.icn 2002-03-11 14:21:18.000000000 -0700
|
||||
+++ icon.v943src/tests/general/io.icn 2006-04-01 10:35:14.590948251 -0700
|
||||
@@ -6,7 +6,7 @@ procedure main()
|
||||
local L, f, m, n, t1, t2
|
||||
|
||||
L := [&input, &output, &errout,
|
||||
- m := open("/etc/motd") | stop("no /etc/motd"),
|
||||
+ m := open("/etc/gentoo-release") | stop("no /etc/gentoo-release"),
|
||||
n := open("/dev/null", "w") | stop("no /dev/null")]
|
||||
L := sort(L)
|
||||
every f := !L do
|
||||
@@ -21,10 +21,10 @@ procedure main()
|
||||
every write(!&input) \ 2
|
||||
|
||||
write()
|
||||
- write("flush /etc/motd: ", image(flush(m)) | "FAILED")
|
||||
- write("close /etc/motd: ", image(close(m)) | "FAILED")
|
||||
- write("close /etc/motd: ", image(close(m)) | "FAILED")
|
||||
- write("flush /etc/motd: ", image(flush(m)) | "FAILED")
|
||||
+ write("flush /etc/gentoo-release: ", image(flush(m)) | "FAILED")
|
||||
+ write("close /etc/gentoo-release: ", image(close(m)) | "FAILED")
|
||||
+ write("close /etc/gentoo-release: ", image(close(m)) | "FAILED")
|
||||
+ write("flush /etc/gentoo-release: ", image(flush(m)) | "FAILED")
|
||||
|
||||
write()
|
||||
write("flush /dev/null: ", image(flush(n)) | "FAILED")
|
||||
diff -uprN icon.v943src_base/tests/general/io.std icon.v943src/tests/general/io.std
|
||||
--- icon.v943src_base/tests/general/io.std 2002-03-11 14:21:18.000000000 -0700
|
||||
+++ icon.v943src/tests/general/io.std 2006-04-01 10:35:31.071362086 -0700
|
||||
@@ -2,7 +2,7 @@ file: &errout
|
||||
file: &input
|
||||
file: &output
|
||||
file: file(/dev/null)
|
||||
-file: file(/etc/motd)
|
||||
+file: file(/etc/gentoo-release)
|
||||
|
||||
aaa
|
||||
bbbb
|
||||
@@ -13,10 +13,10 @@ ffffffff
|
||||
ggggggggg
|
||||
hhhhhhhhhh
|
||||
|
||||
-flush /etc/motd: file(/etc/motd)
|
||||
-close /etc/motd: file(/etc/motd)
|
||||
-close /etc/motd: file(/etc/motd)
|
||||
-flush /etc/motd: file(/etc/motd)
|
||||
+flush /etc/gentoo-release: file(/etc/gentoo-release)
|
||||
+close /etc/gentoo-release: file(/etc/gentoo-release)
|
||||
+close /etc/gentoo-release: file(/etc/gentoo-release)
|
||||
+flush /etc/gentoo-release: file(/etc/gentoo-release)
|
||||
|
||||
flush /dev/null: file(/dev/null)
|
||||
close /dev/null: file(/dev/null)
|
||||
@@ -109,7 +109,7 @@ file(sed 's/^/=()= /' io.icn)
|
||||
> =()= local L, f, m, n, t1, t2
|
||||
> =()=
|
||||
> =()= L := [&input, &output, &errout,
|
||||
-> =()= m := open("/etc/motd") | stop("no /etc/motd"),
|
||||
+> =()= m := open("/etc/gentoo-release") | stop("no /etc/gentoo-release"),
|
||||
> =()= n := open("/dev/null", "w") | stop("no /dev/null")]
|
||||
|
||||
file(ls io.i?n io.d?t io.s?d)
|
||||
diff -uprN icon.v943src_base/tests/general/kwds.std icon.v943src/tests/general/kwds.std
|
||||
--- icon.v943src_base/tests/general/kwds.std 2002-07-10 18:29:28.000000000 -0600
|
||||
+++ icon.v943src/tests/general/kwds.std 2006-04-01 10:35:37.103317654 -0700
|
||||
@@ -20,8 +20,10 @@
|
||||
&features: ASCII
|
||||
&features: co-expressions
|
||||
&features: environment variables
|
||||
+ &features: event monitoring
|
||||
&features: keyboard functions
|
||||
&features: large integers
|
||||
+ &features: multiple programs
|
||||
&features: pipes
|
||||
&features: system function
|
||||
&input: &input
|
||||
diff -uprN icon.v943src_base/tests/general/nargs.std icon.v943src/tests/general/nargs.std
|
||||
--- icon.v943src_base/tests/general/nargs.std 2001-12-06 15:54:01.000000000 -0700
|
||||
+++ icon.v943src/tests/general/nargs.std 2006-04-01 10:35:43.282223496 -0700
|
||||
@@ -15,7 +15,7 @@
|
||||
1 delay
|
||||
2 delete
|
||||
-2 detab
|
||||
- 2 display
|
||||
+ 3 display
|
||||
1 dtor
|
||||
-2 entab
|
||||
0 errorclear
|
||||
@@ -43,12 +43,12 @@
|
||||
4 match
|
||||
2 member
|
||||
1 move
|
||||
- 1 name
|
||||
+ 2 name
|
||||
1 numeric
|
||||
1 ord
|
||||
1 pop
|
||||
1 pos
|
||||
- 2 proc
|
||||
+ 3 proc
|
||||
1 pull
|
||||
-2 push
|
||||
-2 put
|
||||
@@ -79,7 +79,7 @@
|
||||
2 trim
|
||||
1 type
|
||||
4 upto
|
||||
- 1 variable
|
||||
+ 3 variable
|
||||
1 where
|
||||
-1 write
|
||||
-1 writes
|
||||
@@ -1,108 +0,0 @@
|
||||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=0
|
||||
|
||||
inherit eutils flag-o-matic multilib toolchain-funcs
|
||||
|
||||
MY_PV=${PV//./}
|
||||
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon.v${MY_PV}src.tgz"
|
||||
HOMEPAGE="http://www.cs.arizona.edu/icon/"
|
||||
DESCRIPTION="very high level language"
|
||||
|
||||
LICENSE="public-domain HPND"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
|
||||
IUSE="X iplsrc"
|
||||
|
||||
S="${WORKDIR}/icon.v${MY_PV}src"
|
||||
|
||||
DEPEND="X? ( x11-proto/xextproto
|
||||
x11-proto/xproto
|
||||
x11-libs/libX11
|
||||
x11-libs/libXpm
|
||||
x11-libs/libXt )
|
||||
sys-devel/gcc"
|
||||
|
||||
src_unpack() {
|
||||
unpack ${A}
|
||||
|
||||
epatch "${FILESDIR}"/${P}-flags.patch
|
||||
|
||||
# Patch the tests so that they do not fail
|
||||
# The following files in tests/standard are patched..
|
||||
# io.icn - change /etc/motd to /etc/gentoo-release
|
||||
# io.std - change /etc/motd to /etc/gentoo-release
|
||||
# kwds.std - add two lines for the two new added keywords
|
||||
# nargs.std - a couple of functions picked up additional parameters
|
||||
epatch "${FILESDIR}/tests-${MY_PV}.patch"
|
||||
|
||||
# do not prestrip files
|
||||
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
# select the right compile target. Note there are many platforms
|
||||
# available
|
||||
local mytarget;
|
||||
if [[ ${CHOST} == *-darwin* ]]; then
|
||||
mytarget="macintosh"
|
||||
else
|
||||
mytarget="linux"
|
||||
fi
|
||||
|
||||
if use X; then
|
||||
emake X-Configure name=${mytarget} -j1 || die
|
||||
else
|
||||
emake Configure name=${mytarget} -j1 || die
|
||||
fi
|
||||
|
||||
echo "#define MultiThread 1" >> src/h/define.h
|
||||
echo "#define EventMon 1" >> src/h/define.h
|
||||
echo "#define Eve 1" >> src/h/define.h
|
||||
|
||||
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
|
||||
|
||||
emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die "Make Failed"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
make Samples || die "Samples failed"
|
||||
make Test || die "Test failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr
|
||||
dodir /usr/bin
|
||||
dodir /usr/$(get_libdir)
|
||||
|
||||
make Install dest="${D}/usr/$(get_libdir)/icon" || die "Make install failed"
|
||||
dosym ../$(get_libdir)/icon/bin/icont /usr/bin/icont
|
||||
dosym ../$(get_libdir)/icon/bin/iconx /usr/bin/iconx
|
||||
dosym ../$(get_libdir)/icon/bin/icon /usr/bin/icon
|
||||
dosym ../$(get_libdir)/icon/bin/vib /usr/bin/vib
|
||||
|
||||
cd "${S}/man/man1"
|
||||
doman icont.1
|
||||
doman icon.1
|
||||
rm -rf "${D}"/usr/$(get_libdir)/icon/man
|
||||
|
||||
cd "${S}/doc"
|
||||
dodoc *.txt *.sed ../README
|
||||
# dohtml ignores all anything except .html files, no use here
|
||||
mkdir -p "${D}"/usr/share/doc/${PF}/html
|
||||
cp -dpR *.htm *.gif *.jpg *.css "${D}"/usr/share/doc/${PF}/html
|
||||
rm -rf "${D}"/usr/$(get_libdir)/icon/{doc,README}
|
||||
|
||||
# optional Icon Programming Library
|
||||
if use iplsrc; then
|
||||
cd "${S}"
|
||||
dodir /usr/$(get_libdir)/icon/ipl
|
||||
rm ipl/BuildBin
|
||||
rm ipl/BuildExe
|
||||
rm ipl/CheckAll
|
||||
rm ipl/Makefile
|
||||
insinto /usr/$(get_libdir)/icon
|
||||
doins -r ipl
|
||||
fi
|
||||
}
|
||||
@@ -1,104 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils flag-o-matic multilib toolchain-funcs
|
||||
|
||||
MY_PV=${PV//./}
|
||||
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon-v${MY_PV}src.tgz"
|
||||
HOMEPAGE="http://www.cs.arizona.edu/icon/"
|
||||
DESCRIPTION="very high level language"
|
||||
|
||||
LICENSE="public-domain HPND"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
IUSE="X iplsrc"
|
||||
|
||||
S="${WORKDIR}/icon-v${MY_PV}src"
|
||||
|
||||
DEPEND="X? ( x11-proto/xextproto
|
||||
x11-proto/xproto
|
||||
x11-libs/libX11
|
||||
x11-libs/libXpm
|
||||
x11-libs/libXt )
|
||||
|| ( sys-devel/gcc sys-devel/gcc-apple )"
|
||||
|
||||
PATCHES=(
|
||||
"${FILESDIR}"/${P}-flags.patch
|
||||
)
|
||||
|
||||
src_prepare() {
|
||||
epatch "${PATCHES[@]}"
|
||||
|
||||
# do not prestrip files
|
||||
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# select the right compile target. Note there are many platforms
|
||||
# available
|
||||
local mytarget;
|
||||
if [[ ${CHOST} == *-darwin* ]]; then
|
||||
mytarget="macintosh"
|
||||
else
|
||||
mytarget="linux"
|
||||
fi
|
||||
|
||||
if use X; then
|
||||
emake X-Configure name=${mytarget} -j1 || die
|
||||
else
|
||||
emake Configure name=${mytarget} -j1 || die
|
||||
fi
|
||||
|
||||
# sanitise the Makedefs file generated by Configure
|
||||
sed -i \
|
||||
-e 's:-L/usr/X11R6/lib64::g' \
|
||||
-e 's:-L/usr/X11R6/lib::g' \
|
||||
-e 's:-I/usr/X11R6/include::g' \
|
||||
Makedefs || die "sed of Makedefs failed"
|
||||
|
||||
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
make Samples || die "Samples failed"
|
||||
make Test || die "Test failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr
|
||||
dodir /usr/bin
|
||||
dodir /usr/$(get_libdir)
|
||||
|
||||
make Install dest="${ED}/usr/$(get_libdir)/icon" || die "Make install failed"
|
||||
dosym ../$(get_libdir)/icon/bin/icont /usr/bin/icont
|
||||
dosym ../$(get_libdir)/icon/bin/iconx /usr/bin/iconx
|
||||
dosym ../$(get_libdir)/icon/bin/icon /usr/bin/icon
|
||||
dosym ../$(get_libdir)/icon/bin/vib /usr/bin/vib
|
||||
|
||||
cd "${S}/man/man1" || die
|
||||
doman "${PN}"t.1
|
||||
doman "${PN}".1
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/${PN}/man || die
|
||||
|
||||
cd "${S}/doc" || die
|
||||
dodoc *.txt *.sed ../README
|
||||
# dohtml ignores all anything except .html files, no use here
|
||||
mkdir -p "${ED}"/usr/share/doc/${PF}/html
|
||||
cp -dpR *.htm *.gif *.jpg *.css "${ED}"/usr/share/doc/${PF}/html || die
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/icon/{doc,README} || die
|
||||
|
||||
# optional Icon Programming Library
|
||||
if use iplsrc; then
|
||||
cd "${S}" || die
|
||||
dodir /usr/$(get_libdir)/icon/ipl
|
||||
rm -fv ipl/{BuildBin,BuildExe,CheckAll,Makefile} || die
|
||||
insinto /usr/$(get_libdir)/icon
|
||||
doins -r ipl
|
||||
fi
|
||||
}
|
||||
@@ -1,103 +0,0 @@
|
||||
# Copyright 1999-2014 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=4
|
||||
|
||||
inherit eutils flag-o-matic multilib toolchain-funcs
|
||||
|
||||
MY_PV=${PV//./}
|
||||
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon-v${MY_PV}src.tgz"
|
||||
HOMEPAGE="http://www.cs.arizona.edu/icon/"
|
||||
DESCRIPTION="very high level language"
|
||||
|
||||
LICENSE="public-domain HPND"
|
||||
SLOT="0"
|
||||
KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
IUSE="X iplsrc"
|
||||
|
||||
S="${WORKDIR}/icon-v${MY_PV}src"
|
||||
|
||||
DEPEND="X? ( x11-proto/xextproto
|
||||
x11-proto/xproto
|
||||
x11-libs/libX11
|
||||
x11-libs/libXpm
|
||||
x11-libs/libXt )
|
||||
|| ( sys-devel/gcc sys-devel/gcc-apple )"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/${P}-flags.patch
|
||||
|
||||
# do not prestrip files
|
||||
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# select the right compile target. Note there are many platforms
|
||||
# available
|
||||
local mytarget;
|
||||
if [[ ${CHOST} == *-darwin* ]]; then
|
||||
mytarget="macintosh"
|
||||
else
|
||||
mytarget="linux"
|
||||
fi
|
||||
|
||||
if use X; then
|
||||
emake X-Configure name=${mytarget} -j1 || die
|
||||
else
|
||||
emake Configure name=${mytarget} -j1 || die
|
||||
fi
|
||||
|
||||
# sanitise the Makedefs file generated by Configure
|
||||
sed -i \
|
||||
-e 's:-L/usr/X11R6/lib64::g' \
|
||||
-e 's:-L/usr/X11R6/lib::g' \
|
||||
-e 's:-I/usr/X11R6/include::g' \
|
||||
Makedefs || die "sed of Makedefs failed"
|
||||
|
||||
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
make Samples || die "Samples failed"
|
||||
make Test || die "Test failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr
|
||||
dodir /usr/bin
|
||||
dodir /usr/$(get_libdir)
|
||||
|
||||
make Install dest="${ED}/usr/$(get_libdir)/icon" || die "Make install failed"
|
||||
dosym ../$(get_libdir)/icon/bin/icont /usr/bin/icont
|
||||
dosym ../$(get_libdir)/icon/bin/iconx /usr/bin/iconx
|
||||
dosym ../$(get_libdir)/icon/bin/icon /usr/bin/icon
|
||||
dosym ../$(get_libdir)/icon/bin/vib /usr/bin/vib
|
||||
|
||||
cd "${S}/man/man1"
|
||||
doman icont.1
|
||||
doman icon.1
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/icon/man
|
||||
|
||||
cd "${S}/doc"
|
||||
dodoc *.txt *.sed ../README
|
||||
# dohtml ignores all anything except .html files, no use here
|
||||
mkdir -p "${ED}"/usr/share/doc/${PF}/html
|
||||
cp -dpR *.htm *.gif *.jpg *.css "${ED}"/usr/share/doc/${PF}/html
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/icon/{doc,README}
|
||||
|
||||
# optional Icon Programming Library
|
||||
if use iplsrc; then
|
||||
cd "${S}"
|
||||
dodir /usr/$(get_libdir)/icon/ipl
|
||||
rm ipl/BuildBin
|
||||
rm ipl/BuildExe
|
||||
rm ipl/CheckAll
|
||||
rm ipl/Makefile
|
||||
insinto /usr/$(get_libdir)/icon
|
||||
doins -r ipl
|
||||
fi
|
||||
}
|
||||
@@ -1,102 +0,0 @@
|
||||
# Copyright 1999-2016 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils flag-o-matic multilib toolchain-funcs
|
||||
|
||||
MY_PV=${PV//./}
|
||||
SRC_URI="http://www.cs.arizona.edu/icon/ftp/packages/unix/icon-v${MY_PV}src.tgz"
|
||||
HOMEPAGE="http://www.cs.arizona.edu/icon/"
|
||||
DESCRIPTION="very high level language"
|
||||
|
||||
LICENSE="public-domain HPND"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
|
||||
IUSE="X iplsrc"
|
||||
|
||||
S="${WORKDIR}/icon-v${MY_PV}src"
|
||||
|
||||
DEPEND="X? ( x11-proto/xextproto
|
||||
x11-proto/xproto
|
||||
x11-libs/libX11
|
||||
x11-libs/libXpm
|
||||
x11-libs/libXt )
|
||||
|| ( sys-devel/gcc sys-devel/gcc-apple )"
|
||||
|
||||
PATCHES=( "${FILESDIR}"/${P}-flags.patch )
|
||||
|
||||
src_prepare() {
|
||||
epatch "${PATCHES[@]}"
|
||||
|
||||
# do not prestrip files
|
||||
find "${S}"/src -name 'Makefile' | xargs sed -i -e "/strip/d" || die
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
# select the right compile target. Note there are many platforms
|
||||
# available
|
||||
local mytarget;
|
||||
if [[ ${CHOST} == *-darwin* ]]; then
|
||||
mytarget="macintosh"
|
||||
else
|
||||
mytarget="linux"
|
||||
fi
|
||||
|
||||
if use X; then
|
||||
emake X-Configure name=${mytarget} -j1 || die
|
||||
else
|
||||
emake Configure name=${mytarget} -j1 || die
|
||||
fi
|
||||
|
||||
# sanitise the Makedefs file generated by Configure
|
||||
sed -i \
|
||||
-e 's:-L/usr/X11R6/lib64::g' \
|
||||
-e 's:-L/usr/X11R6/lib::g' \
|
||||
-e 's:-I/usr/X11R6/include::g' \
|
||||
Makedefs || die "sed of Makedefs failed"
|
||||
|
||||
append-flags $(test-flags -fno-strict-aliasing -fwrapv)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake -j1 CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
|
||||
}
|
||||
|
||||
src_test() {
|
||||
make Samples || die "Samples failed"
|
||||
make Test || die "Test failed"
|
||||
}
|
||||
|
||||
src_install() {
|
||||
dodir /usr
|
||||
dodir /usr/bin
|
||||
dodir /usr/$(get_libdir)
|
||||
|
||||
make Install dest="${ED}/usr/$(get_libdir)/icon" || die "Make install failed"
|
||||
dosym ../$(get_libdir)/icon/bin/icont /usr/bin/icont
|
||||
dosym ../$(get_libdir)/icon/bin/iconx /usr/bin/iconx
|
||||
dosym ../$(get_libdir)/icon/bin/icon /usr/bin/icon
|
||||
dosym ../$(get_libdir)/icon/bin/vib /usr/bin/vib
|
||||
|
||||
cd "${S}/man/man1" || die
|
||||
doman "${PN}"t.1
|
||||
doman "${PN}".1
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/${PN}/man || die
|
||||
|
||||
cd "${S}/doc" || die
|
||||
dodoc *.txt *.sed ../README
|
||||
# dohtml ignores all anything except .html files, no use here
|
||||
mkdir -p "${ED}"/usr/share/doc/${PF}/html
|
||||
cp -dpR *.htm *.gif *.jpg *.css "${ED}"/usr/share/doc/${PF}/html || die
|
||||
rm -rf "${ED}"/usr/$(get_libdir)/icon/{doc,README} || die
|
||||
|
||||
# optional Icon Programming Library
|
||||
if use iplsrc; then
|
||||
cd "${S}" || die
|
||||
dodir /usr/$(get_libdir)/icon/ipl
|
||||
rm -fv ipl/{BuildBin,BuildExe,CheckAll,Makefile} || die
|
||||
insinto /usr/$(get_libdir)/icon
|
||||
doins -r ipl
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user