changeset 59:6a65c52cb465

dodoc works
author holger@hoho.dyndns.org
date Fri, 15 Aug 2008 14:00:48 +0200
parents 92f35dfbf2b8
children acd741f300f7
files net-misc/rabbitmq-server/Manifest net-misc/rabbitmq-server/rabbitmq-server-1.4.0.ebuild
diffstat 2 files changed, 8 insertions(+), 40 deletions(-) [+]
line wrap: on
line diff
--- a/net-misc/rabbitmq-server/Manifest	Wed Aug 13 20:56:04 2008 +0200
+++ b/net-misc/rabbitmq-server/Manifest	Fri Aug 15 14:00:48 2008 +0200
@@ -1,3 +1,3 @@
 DIST rabbitmq-server-generic-unix-1.4.0.tar.gz 394991 RMD160 f3ced06ec6f8ced09a9e0f5c60f0b73954ea8634 SHA1 bea27fa2255324f13e343ed82c50e69c6983628a SHA256 642ffe9cdca8ac5bd030647d24d60cca388df20f1d6a5913c3a2ae036f75018e
-EBUILD rabbitmq-server-1.4.0.ebuild 3289 RMD160 ac06f3146a1912fe81a26de5659b85be64695a4c SHA1 f0077722a4f1756e72a0e52daf90a11338bea8e1 SHA256 6f19a6c168c7acfde824506e303ca5423352b08117be3d0acd61ccf106ac5bc4
-MISC rabbitmq-server-1.4.0.ebuild~ 7680 RMD160 d66d21153bdef80641510d118ae3948c088e67e0 SHA1 4888a5cad90ee282817dd0e134b4dc4d4e858ef7 SHA256 db327700e6d7d348cfa19c1f595822bc19b694f1416bb9144661cd23d87c79ba
+EBUILD rabbitmq-server-1.4.0.ebuild 1806 RMD160 7742423a59044c88b60d6630a5801af1198c812e SHA1 1820479e2675c98fdc10041ee609bdd2222ffe59 SHA256 2c17ecb65e7535745e6e0325c7db50cf50ef8252f086fbf007325e9c0a36d054
+MISC rabbitmq-server-1.4.0.ebuild~ 1819 RMD160 ddc1e00a0a73fd14439091eb143576e02acc6749 SHA1 e2c8f77df35b260faa31d8d0f895fda45c4d41cc SHA256 d098ff3ea3fb591e1cd5cbef177ea98219c77acfe50e897b534b5a989f45d920
--- a/net-misc/rabbitmq-server/rabbitmq-server-1.4.0.ebuild	Wed Aug 13 20:56:04 2008 +0200
+++ b/net-misc/rabbitmq-server/rabbitmq-server-1.4.0.ebuild	Fri Aug 15 14:00:48 2008 +0200
@@ -18,50 +18,18 @@
 
 # Source directory; the dir where the sources can be found (automatically
 # unpacked) inside ${WORKDIR}.  The default value for S is ${WORKDIR}/${P}
-# If you don't need to change it, leave the S= line out of the ebuild
-# to keep it tidy.
-#S="${WORKDIR}/${P}"
-
-src_compile() {
-	# Most open-source packages use GNU autoconf for configuration.
-	# The quickest (and preferred) way of running configure is:
-	econf || die "econf failed"
-	#
-	# You could use something similar to the following lines to
-	# configure your package before compilation.  The "|| die" portion
-	# at the end will stop the build process if the command fails.
-	# You should use this at the end of critical commands in the build
-	# process.  (Hint: Most commands are critical, that is, the build
-	# process should abort if they aren't successful.)
-	#./configure \
-	#	--host=${CHOST} \
-	#	--prefix=/usr \
-	#	--infodir=/usr/share/info \
-	#	--mandir=/usr/share/man || die "./configure failed"
-	# Note the use of --infodir and --mandir, above. This is to make
-	# this package FHS 2.2-compliant.  For more information, see
-	#   http://www.pathname.com/fhs/
-
-	# emake (previously known as pmake) is a script that calls the
-	# standard GNU make with parallel building options for speedier
-	# builds (especially on SMP systems).  Try emake first.  It might
-	# not work for some packages, because some makefiles have bugs
-	# related to parallelism, in these cases, use emake -j1 to limit
-	# make to a single process.  The -j1 is a visual clue to others
-	# that the makefiles have bugs that have been worked around.
-	emake || die "emake failed"
-}
+# If you don't need to change it, leave the S= line out of the ebuild 
+# to keep it tidy. 
+S="${WORKDIR}/rabbitmq_server-${PV}"
 
 src_install() {
+	dodoc INSTALL LICENSE LICENSE-MPL-RabbitMQ
+
 	# You must *personally verify* that this trick doesn't install
 	# anything outside of DESTDIR; do this by reading and
 	# understanding the install part of the Makefiles.
 	# This is the preferred way to install.
-	emake DESTDIR="${D}" install || die "emake install failed"
-
-	# When you hit a failure with emake, do not just use make. It is
-	# better to fix the Makefiles to allow proper parallelization.
-	# If you fail with that, use "emake -j1", it's still better than make.
+	#emake DESTDIR="${D}" install || die "emake install failed"
 
 	# For Makefiles that don't make proper use of DESTDIR, setting
 	# prefix is often an alternative.  However if you do this, then