summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTavis Ormandy <taviso@gentoo.org>2003-05-20 19:41:56 +0000
committerTavis Ormandy <taviso@gentoo.org>2003-05-20 19:41:56 +0000
commitd4314a70650c6193c0c87ae71ea6b73eafab8877 (patch)
treee20575aef92e64f39258ebc1e674a0d73e3f6b36 /sys-apps/dcron
parentdebian project say its okay to mirror libots. (diff)
downloadhistorical-d4314a70650c6193c0c87ae71ea6b73eafab8877.tar.gz
historical-d4314a70650c6193c0c87ae71ea6b73eafab8877.tar.bz2
historical-d4314a70650c6193c0c87ae71ea6b73eafab8877.zip
Removing gcc hardcode
Diffstat (limited to 'sys-apps/dcron')
-rw-r--r--sys-apps/dcron/ChangeLog5
-rw-r--r--sys-apps/dcron/Manifest9
-rw-r--r--sys-apps/dcron/dcron-2.9.ebuild7
3 files changed, 18 insertions, 3 deletions
diff --git a/sys-apps/dcron/ChangeLog b/sys-apps/dcron/ChangeLog
index 8bb8c17f5557..5749b7024ed9 100644
--- a/sys-apps/dcron/ChangeLog
+++ b/sys-apps/dcron/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for sys-apps/dcron
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/ChangeLog,v 1.15 2003/04/18 20:28:56 tuxus Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/ChangeLog,v 1.16 2003/05/20 19:41:48 taviso Exp $
+
+ 20 May 2003; Tavis Ormandy <taviso@gentoo.org> dcron-2.9.ebuild:
+ Removing gcc hardcode, marking alpha
*dcron-2.9 (19 Mar 2003)
diff --git a/sys-apps/dcron/Manifest b/sys-apps/dcron/Manifest
new file mode 100644
index 000000000000..f21c1748a1fc
--- /dev/null
+++ b/sys-apps/dcron/Manifest
@@ -0,0 +1,9 @@
+MD5 d84082934b0d3d8a9f64a6a36eaf1322 dcron-2.7-r10.ebuild 1785
+MD5 b8327171cb0d4b1c27379140edf9dd81 dcron-2.9.ebuild 1800
+MD5 297a03dd131ba11272509e10069f002c ChangeLog 2202
+MD5 3f83bf90ed67dc33c4b67dedaa626dae files/crontab 815
+MD5 2db10e843ecdf10a2b3aa5f70322310b files/digest-dcron-2.9 55
+MD5 b0a661ba0ae334e2d9453a144907b375 files/digest-dcron-2.7-r10 55
+MD5 7278fd48e8e262b669c68e453c991432 files/dcron.rc6 632
+MD5 932978359b7a3b3a2d29a96827ceca83 files/dcron-2.7-Makefile-gentoo.diff 534
+MD5 31317ebf17de1d739c57ccbee37caf13 files/dcron-2.7-whitespace.diff 244
diff --git a/sys-apps/dcron/dcron-2.9.ebuild b/sys-apps/dcron/dcron-2.9.ebuild
index aa13bacbc2ff..a92b71abfb45 100644
--- a/sys-apps/dcron/dcron-2.9.ebuild
+++ b/sys-apps/dcron/dcron-2.9.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/dcron-2.9.ebuild,v 1.2 2003/04/16 14:33:46 taviso Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/dcron/dcron-2.9.ebuild,v 1.3 2003/05/20 19:41:48 taviso Exp $
# to use this, you must be part of the "cron" group
@@ -9,7 +9,7 @@ S=${WORKDIR}/${PN}
DESCRIPTION="A cute little cron from Matt Dillon"
SRC_URI="http://apollo.backplane.com/FreeSrc/${PN}${MY_PV}.tgz"
HOMEPAGE="http://apollo.backplane.com/"
-KEYWORDS="~x86 ~ppc ~sparc ~hppa ~alpha"
+KEYWORDS="~x86 ~ppc ~sparc ~hppa alpha"
SLOT="0"
LICENSE="GPL-2"
@@ -30,6 +30,9 @@ src_unpack() {
sed -e 's:VISUAL:EDITOR:g' ${S}/crontab.c.orig > ${S}/crontab.c
cp ${S}/crontab.1 ${S}/crontab.1.orig
sed -e 's:VISUAL:EDITOR:g' ${S}/crontab.1.orig > ${S}/crontab.1
+ # remove gcc hardcode
+ cp ${S}/Makefile ${S}/Makefile.orig
+ sed -e "s:\(CC = \)gcc:\1${CC:-gcc}:" ${S}/Makefile.orig > ${S}/Makefile
}
src_compile() {