summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDonnie Berkholz <spyderous@gentoo.org>2005-08-08 06:28:13 +0000
committerDonnie Berkholz <spyderous@gentoo.org>2005-08-08 06:28:13 +0000
commit57fb94ba97fd17987ae03bea4bd04417b795d84b (patch)
tree9bfd00b09ca8ce22f5f0c789638e86d6e99bbc25 /x11-apps/rstart
parentversion bump (diff)
downloadgentoo-2-57fb94ba97fd17987ae03bea4bd04417b795d84b.tar.gz
gentoo-2-57fb94ba97fd17987ae03bea4bd04417b795d84b.tar.bz2
gentoo-2-57fb94ba97fd17987ae03bea4bd04417b795d84b.zip
Initial commit for modular X.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'x11-apps/rstart')
-rw-r--r--x11-apps/rstart/ChangeLog10
-rw-r--r--x11-apps/rstart/Manifest3
-rw-r--r--x11-apps/rstart/files/digest-rstart-0.99.01
-rw-r--r--x11-apps/rstart/files/rstart-destdir.patch87
-rw-r--r--x11-apps/rstart/rstart-0.99.0.ebuild16
5 files changed, 117 insertions, 0 deletions
diff --git a/x11-apps/rstart/ChangeLog b/x11-apps/rstart/ChangeLog
new file mode 100644
index 000000000000..81be55e33000
--- /dev/null
+++ b/x11-apps/rstart/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for x11-apps/rstart
+# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/rstart/ChangeLog,v 1.1 2005/08/08 06:28:10 spyderous Exp $
+
+*rstart-0.99.0 (08 Aug 2005)
+
+ 08 Aug 2005; Donnie Berkholz <spyderous@gentoo.org>;
+ +files/rstart-destdir.patch, +rstart-0.99.0.ebuild:
+ Initial commit for modular X.
+
diff --git a/x11-apps/rstart/Manifest b/x11-apps/rstart/Manifest
new file mode 100644
index 000000000000..1efd9b0226fa
--- /dev/null
+++ b/x11-apps/rstart/Manifest
@@ -0,0 +1,3 @@
+MD5 9a57b1e3774b31c4003f4126875ba041 rstart-0.99.0.ebuild 392
+MD5 f2e4dcff95e33ac48480e6cf5b315bc0 files/rstart-destdir.patch 3060
+MD5 cdd5a59500569e6aa3443f33ea500d45 files/digest-rstart-0.99.0 65
diff --git a/x11-apps/rstart/files/digest-rstart-0.99.0 b/x11-apps/rstart/files/digest-rstart-0.99.0
new file mode 100644
index 000000000000..4dd3f2d4e498
--- /dev/null
+++ b/x11-apps/rstart/files/digest-rstart-0.99.0
@@ -0,0 +1 @@
+MD5 0026fc78b94f5596587b1f6e5ff10bc4 rstart-0.99.0.tar.bz2 63815
diff --git a/x11-apps/rstart/files/rstart-destdir.patch b/x11-apps/rstart/files/rstart-destdir.patch
new file mode 100644
index 000000000000..5a778b1dca53
--- /dev/null
+++ b/x11-apps/rstart/files/rstart-destdir.patch
@@ -0,0 +1,87 @@
+? rstart/commands
+? rstart/contexts
+? rstart/rstart.patch
+? rstart/samples
+Index: rstart/Makefile.am
+===================================================================
+RCS file: /cvs/xorg/app/rstart/Makefile.am,v
+retrieving revision 1.5
+diff -u -b -B -r1.5 Makefile.am
+--- rstart/Makefile.am 28 Jul 2005 15:57:12 -0000 1.5
++++ rstart/Makefile.am 29 Jul 2005 16:53:42 -0000
+@@ -40,7 +40,7 @@
+ config_DATA = config
+
+ config: config.cpp
+- $(CPP) -DPACKAGEname=rstart -DLIBDIR=$(configdir) -DENVPREFIX=RSTART ${srcdir}/config.cpp | \
++ $(CPP) -DPACKAGEname=rstart -DLIBDIR=$(configdir) -DENVPREFIX=RSTART $(top_srcdir)/config.cpp | \
+ $(SED) -e /^\#.*$$/d -e s/XCOMM/\#/g > $@
+
+ # wrapper scripts
+@@ -48,12 +48,12 @@
+ bin_SCRIPTS = rstart rstartd
+
+ rstart: client.cpp
+- $(CPP) -DRSHCMD=$(RSH) -DSERVERNAME=rstartd ${srcdir}/client.cpp | \
++ $(CPP) -DRSHCMD=$(RSH) -DSERVERNAME=rstartd $(top_srcdir)/client.cpp | \
+ $(SED) -e /^\#.*$$/d -e s/XCOMM/\#/g > $@
+
+ rstartd: server.cpp
+ $(CPP) -DBINDIR=$(rstart_serverdir) -DLIBDIR=$(configdir) \
+- ${srcdir}/server.cpp | \
++ $(top_srcdir)/server.cpp | \
+ $(SED) -e /^\#.*$$/d -e s/XCOMM/\#/g > $@
+
+ # man pages
+@@ -76,39 +76,39 @@
+ DATA_DIR = $(libdir)/X11/rstart
+
+ install-data-hook:
+- for name in `find ${srcdir}/commands -print | grep -v CVS` ; do \
++ for name in `find $(top_srcdir)/commands -print | grep -v CVS` ; do \
+ if test -f $$name; then \
+- sed \
++ $(SED) \
+ -e 's,ENVPREFIX,RSTART,g' \
+- < $$name > $(DATA_DIR)/$$name; \
+- case `basename $(DATA_DIR)/$$name` in \
++ < $$name > $(DESTDIR)$(DATA_DIR)/$$name; \
++ case `basename $(DESTDIR)$(DATA_DIR)/$$name` in \
+ @*) \
+ ;; \
+ *) \
+- chmod a+x $(DATA_DIR)/$$name ;; \
++ chmod a+x $(DESTDIR)$(DATA_DIR)/$$name ;; \
+ esac; \
+ else \
+ if [ -d $$name ] ; then \
+- mkdir -p $(DATA_DIR)/$$name ; \
++ mkdir -p $(DESTDIR)$(DATA_DIR)/$$name ; \
+ fi; \
+ fi; \
+ done; \
+ \
+- for name in `find ${srcdir}/contexts -print | grep -v CVS` ; do \
++ for name in `find $(top_srcdir)/contexts -print | grep -v CVS` ; do \
+ if test -f $$name; then \
+- sed \
++ $(SED) \
+ -e 's,_PATH,$(DEFAULT_USER_PATH),g' \
+ -e 's,_MANPATH,$(DEFAULT_X_MANPATH),g' \
+- < $$name > $(DATA_DIR)/$$name ; \
++ < $$name > $(DESTDIR)$(DATA_DIR)/$$name ; \
+ else \
+ if [ -d $$name ] ; then \
+- mkdir -p $(DATA_DIR)/$$name ; \
++ mkdir -p $(DESTDIR)$(DATA_DIR)/$$name ; \
+ fi ; \
+ fi ; \
+ done; \
+ \
+- cd $(DATA_DIR)/contexts; \
+- sed -e '/^$$/d' -e '/^#/d' ${srcdir}/contexts/@Aliases | \
++ cd $(DESTDIR)$(DATA_DIR)/contexts; \
++ $(SED) -e '/^$$/d' -e '/^#/d' @Aliases | \
+ while read real aliases; do \
+ for i in $$aliases; do \
+ $(RM) $$i; \
diff --git a/x11-apps/rstart/rstart-0.99.0.ebuild b/x11-apps/rstart/rstart-0.99.0.ebuild
new file mode 100644
index 000000000000..fa5fae69ab07
--- /dev/null
+++ b/x11-apps/rstart/rstart-0.99.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2005 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/rstart/rstart-0.99.0.ebuild,v 1.1 2005/08/08 06:28:10 spyderous Exp $
+
+# Must be before x-modular eclass is inherited
+# Hack to make autoreconf run for our patch
+SNAPSHOT="yes"
+
+inherit x-modular
+
+DESCRIPTION="X.Org rstart application"
+KEYWORDS="~x86"
+RDEPEND="x11-libs/libX11"
+DEPEND="${RDEPEND}"
+
+PATCHES="${FILESDIR}/rstart-destdir.patch"