From 56bd759df1d0c750a065b8c845e93d5dfa6b549d Mon Sep 17 00:00:00 2001 From: "Robin H. Johnson" Date: Sat, 8 Aug 2015 13:49:04 -0700 Subject: proj/gentoo: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson X-Thanks: Alec Warner - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring - wrote much python to improve cvs2svn X-Thanks: Rich Freeman - validation scripts X-Thanks: Patrick Lauer - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed --- .../irsim/files/irsim-9.7.72-ldflags.patch | 44 ++++++++++++++++++++++ .../irsim/files/irsim-9.7.79-datadir.patch | 23 +++++++++++ 2 files changed, 67 insertions(+) create mode 100644 sci-electronics/irsim/files/irsim-9.7.72-ldflags.patch create mode 100644 sci-electronics/irsim/files/irsim-9.7.79-datadir.patch (limited to 'sci-electronics/irsim/files') diff --git a/sci-electronics/irsim/files/irsim-9.7.72-ldflags.patch b/sci-electronics/irsim/files/irsim-9.7.72-ldflags.patch new file mode 100644 index 000000000000..d219415eb5e8 --- /dev/null +++ b/sci-electronics/irsim/files/irsim-9.7.72-ldflags.patch @@ -0,0 +1,44 @@ +--- tcltk/Makefile.old 2011-04-26 17:40:36.000000000 +0000 ++++ tcltk/Makefile 2011-04-26 17:41:05.000000000 +0000 +@@ -26,7 +26,7 @@ + ${CP} irsimexec $(DESTDIR)${TCLDIR}/irsimexec + + irsimexec: irsimexec.c tclirsim.o +- ${CC} ${CFLAGS} ${CPPFLAGS} ${DFLAGS} irsimexec.c -o irsimexec \ ++ ${CC} ${CFLAGS} ${CPPFLAGS} ${DFLAGS} ${LDFLAGS} irsimexec.c -o irsimexec \ + ${LIBS} ${LIB_SPECS} + + irsim.tcl: irsim.tcl.in +--- irsim/Makefile.old 2011-04-26 17:46:38.000000000 +0000 ++++ irsim/Makefile 2011-04-26 17:47:21.000000000 +0000 +@@ -22,7 +22,7 @@ + tclirsim${SHDLIB_EXT}: ${EXTRA_LIBS} + @echo --- making irsim Tcl library \(tclirsim${SHDLIB_EXT}\) + ${RM} tclirsim${SHDLIB_EXT} +- ${CC} ${CFLAGS} ${CPPFLAGS} -o $@ ${LDDL_FLAGS} ${LD_RUN_PATH} \ ++ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@ ${LDDL_FLAGS} ${LD_RUN_PATH} \ + ${EXTRA_LIBS} -lc ${LIBS} ${LD_EXTRA_LIBS} + + $(DESTDIR)${BINDIR}/irsim: +--- random/Makefile.old 2011-04-26 17:48:46.000000000 +0000 ++++ random/Makefile 2011-04-26 17:49:02.000000000 +0000 +@@ -21,7 +21,7 @@ + random${SHDLIB_EXT}: randwrap.o + @echo --- making random Tcl library + ${RM} random${SHDLIB_EXT} +- ${CC} ${CFLAGS} ${CPPFLAGS} -o $@ ${LDDL_FLAGS} randwrap.o \ ++ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@ ${LDDL_FLAGS} randwrap.o \ + ${MAC_SHARED} -lc ${LIBS} ${LD_EXTRA_LIBS} + + install-tcl: $(DESTDIR)${TCLDIR}/random${SHDLIB_EXT} +--- tclsubckt/Makefile.old 2011-04-26 17:50:23.000000000 +0000 ++++ tclsubckt/Makefile 2011-04-26 17:50:45.000000000 +0000 +@@ -22,7 +22,7 @@ + diglib${SHDLIB_EXT}: diglib.o + @echo --- making diglib subcircuit shared library + ${RM} diglib${SHDLIB_EXT} +- ${CC} ${CFLAGS} ${CPPFLAGS} -o $@ ${LDDL_FLAGS} diglib.o \ ++ ${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} -o $@ ${LDDL_FLAGS} diglib.o \ + ${MAC_SHARED} -lc ${LIBS} ${LD_EXTRA_LIBS} + + install-tcl: $(DESTDIR)${TCLDIR}/diglib${SHDLIB_EXT} diff --git a/sci-electronics/irsim/files/irsim-9.7.79-datadir.patch b/sci-electronics/irsim/files/irsim-9.7.79-datadir.patch new file mode 100644 index 000000000000..ca4fd4628575 --- /dev/null +++ b/sci-electronics/irsim/files/irsim-9.7.79-datadir.patch @@ -0,0 +1,23 @@ +--- irsim-9.7.79/scripts/defs.mak.in ++++ irsim-9.7.79/scripts/defs.mak.in +@@ -12,6 +12,7 @@ + exec_prefix = @exec_prefix@ + bindir = @bindir@ + libdir = @libdir@ ++datadir = @datadir@ + mandir = @mandir@ + + VERSION = @VERSION@ +@@ -33,9 +34,9 @@ + LIBDIR = ${libdir} + DOCDIR = ${libdir}/irsim/doc + SYSDIR = ${libdir}/irsim/sys +-PRMDIR = ${libdir}/irsim/prm +-TCLDIR = ${libdir}/irsim/tcl +-XBMDIR = ${libdir}/irsim/tcl/bitmaps ++PRMDIR = ${datadir}/irsim/prm ++TCLDIR = ${libdir}/irsim/tcl ++XBMDIR = ${libdir}/irsim/tcl/bitmaps + + MAIN_EXTRA_LIBS = @extra_libs@ + LD_EXTRA_LIBS = @ld_extra_libs@ -- cgit v1.2.3-65-gdbad