diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-misc/cdctl/files | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
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 <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-misc/cdctl/files')
-rw-r--r-- | app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch | 56 | ||||
-rw-r--r-- | app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch | 13 | ||||
-rw-r--r-- | app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch | 55 |
3 files changed, 124 insertions, 0 deletions
diff --git a/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch b/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch new file mode 100644 index 000000000000..6d8e11502fcc --- /dev/null +++ b/app-misc/cdctl/files/cdctl-0.15-Makefile.in.patch @@ -0,0 +1,56 @@ +--- Makefile.in.orig 2003-02-20 21:57:38.000000000 -0800 ++++ Makefile.in 2003-02-20 22:27:10.000000000 -0800 +@@ -2,10 +2,12 @@ + CFLAGS=-Wall -g + BINS=cdctl sndreset + OBJS=cdctl.o version.o ioctls.o iso_header.o +-DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README SEGFAULTS ++DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README + MANS=cdctl.1 + MOS=cdctl.mo + ++prefix = @prefix@ ++exec_prefix = @exec_prefix@ + bindir = @bindir@ + mandir = @mandir@ + datadir = @datadir@ +@@ -16,6 +18,10 @@ + INSTALL = @INSTALL@ + INSTALL_DATA = $(INSTALL) -m 644 + ++DESTDIR = ++ ++man1dir = $(mandir)/man1 ++ + all: $(BINS) + + cdctl: $(OBJS) +@@ -26,21 +32,21 @@ + version.o: version.c + iso_header.o: iso_header.c + +-install: install-bins install-docs install-mans install-mos ++install: install-bins install-mans install-mos + + install-bins: $(BINS) +- $(INSTALL) -s $(BINS) $(bindir) +- +-install-docs: $(DOCS) +- $(INSTALL_DATA) $(DOCS) $(datadir) ++ $(INSTALL) -d $(DESTDIR)$(bindir) ++ $(INSTALL) $(BINS) $(DESTDIR)$(bindir) + + install-mans: $(MANS) +- $(INSTALL_DATA) $(MANS) $(mandir) ++ $(INSTALL) -d $(DESTDIR)$(man1dir) ++ $(INSTALL_DATA) $(MANS) $(DESTDIR)$(man1dir) + + # FIXME: need to deal with other languages besides German + + install-mos: cdctl.mo +- $(INSTALL_DATA) $(MOS) $(localedir)/de/LC_MESSAGES ++ $(INSTALL) -d $(DESTDIR)$(localedir)/de/LC_MESSAGES ++ $(INSTALL_DATA) $(MOS) $(DESTDIR)$(localedir)/de/LC_MESSAGES + + cdctl.mo: cdctl.po + msgfmt cdctl.po -o cdctl.mo diff --git a/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch b/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch new file mode 100644 index 000000000000..8e440955907b --- /dev/null +++ b/app-misc/cdctl/files/cdctl-0.15-cdc_ioctls.patch @@ -0,0 +1,13 @@ +diff -Naurp cdctl-0.15-orig/cdctl.c cdctl-0.15/cdctl.c +--- cdctl-0.15-orig/cdctl.c 2006-08-08 23:18:44.000000000 +0200 ++++ cdctl-0.15/cdctl.c 2006-08-08 23:19:33.000000000 +0200 +@@ -337,7 +337,9 @@ int do_print_capabilities(int cdrom) { + printf("Can report media change: %i\n", (ret & CDC_MEDIA_CHANGED)?1:0); + printf("Can play audio discs : %i\n", (ret & CDC_PLAY_AUDIO)?1:0); + printf("Can do a hard reset : %i\n", (ret & CDC_RESET)?1:0); ++#ifdef CDC_IOCTLS + printf("Has non-standard ioctls: %i\n", (ret & CDC_IOCTLS)?1:0); ++#endif + printf("Can report drive status: %i\n", (ret & CDC_DRIVE_STATUS)?1:0); + + #ifdef CDROM_CHANGER_NSLOTS diff --git a/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch b/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch new file mode 100644 index 000000000000..f6f4ad3abdcf --- /dev/null +++ b/app-misc/cdctl/files/cdctl-0.16-Makefile.in.patch @@ -0,0 +1,55 @@ +--- cdctl/Makefile.in ++++ cdctl/Makefile.in +@@ -1,8 +1,8 @@ + CC=gcc +-CFLAGS=-Wall -g ++CFLAGS:=-Wall -g + BINS=cdctl sndreset + OBJS=cdctl.o version.o ioctls.o iso_header.o +-DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README SEGFAULTS ++DOCS=NEWS NUTSANDBOLTS LICENSE PUBLICKEY README + # NOTE: all man pages are installed in $(mandir)/man1 -- see install-mans + MANS=cdctl.1 + MOS=cdctl.mo +@@ -22,6 +22,8 @@ + INSTALL_DIR = $(INSTALL) -d + INSTALL_DATA = $(INSTALL) -m 644 + ++DESTDIR = ++ + all: $(BINS) + + cdctl: $(OBJS) +@@ -35,25 +37,21 @@ + indent: + indent -kr -cdb -sc *.c + +-install: install-bins install-docs install-mans install-mos ++install: install-bins install-mans install-mos + + install-bins: $(BINS) +- $(INSTALL_DIR) $(bindir) +- $(INSTALL) -s $(BINS) $(bindir) +- +-install-docs: $(DOCS) +- $(INSTALL_DIR) $(docdir) +- $(INSTALL_DATA) $(DOCS) $(docdir) ++ $(INSTALL_DIR) $(DESTDIR)$(bindir) ++ $(INSTALL) $(BINS) $(DESTDIR)$(bindir) + + install-mans: $(MANS) +- $(INSTALL_DIR) $(mandir)/man1 +- $(INSTALL_DATA) $(MANS) $(mandir)/man1 ++ $(INSTALL_DIR) $(DESTDIR)/$(mandir)/man1 ++ $(INSTALL_DATA) $(MANS) $(DESTDIR)$(mandir)/man1 + + # FIXME: need to deal with other languages besides German + + install-mos: cdctl.mo +- $(INSTALL_DIR) $(localedir)/de/LC_MESSAGES +- $(INSTALL_DATA) $(MOS) $(localedir)/de/LC_MESSAGES ++ $(INSTALL_DIR) $(DESTDIR)$(localedir)/de/LC_MESSAGES ++ $(INSTALL_DATA) $(MOS) $(DESTDIR)$(localedir)/de/LC_MESSAGES + + cdctl.mo: cdctl.po + msgfmt cdctl.po -o cdctl.mo |