summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-07-18 07:01:22 +0000
committerMike Frysinger <vapier@gentoo.org>2004-07-18 07:01:22 +0000
commitb0464d353a9fdcb4f0a16aff753833bf3a1d8b36 (patch)
tree907ad242f7e6c153c62f534b3fda79228d48fb51 /sys-apps/pcfclock
parentFixes realplayer bug and gives amd64 a stable ebuild for Bug #55456. (Manifes... (diff)
downloadgentoo-2-b0464d353a9fdcb4f0a16aff753833bf3a1d8b36.tar.gz
gentoo-2-b0464d353a9fdcb4f0a16aff753833bf3a1d8b36.tar.bz2
gentoo-2-b0464d353a9fdcb4f0a16aff753833bf3a1d8b36.zip
initial ebuild #50811
Diffstat (limited to 'sys-apps/pcfclock')
-rw-r--r--sys-apps/pcfclock/ChangeLog8
-rw-r--r--sys-apps/pcfclock/Manifest2
-rw-r--r--sys-apps/pcfclock/files/digest-pcfclock-0.441
-rw-r--r--sys-apps/pcfclock/files/pcfclock.modules.d4
-rw-r--r--sys-apps/pcfclock/pcfclock-0.44.ebuild30
5 files changed, 45 insertions, 0 deletions
diff --git a/sys-apps/pcfclock/ChangeLog b/sys-apps/pcfclock/ChangeLog
new file mode 100644
index 000000000000..d5679c5a4db9
--- /dev/null
+++ b/sys-apps/pcfclock/ChangeLog
@@ -0,0 +1,8 @@
+# ChangeLog for sys-apps/pcfclock
+# Copyright 2000-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcfclock/ChangeLog,v 1.1 2004/07/18 07:01:22 vapier Exp $
+
+*pcfclock-0.44 (18 Jul 2004)
+
+ 18 Jul 2004; Mike Frysinger <vapier@gentoo.org> :
+ Initial import. Ebuild submitted by Stefan Briesenick #50811.
diff --git a/sys-apps/pcfclock/Manifest b/sys-apps/pcfclock/Manifest
new file mode 100644
index 000000000000..70b19f341121
--- /dev/null
+++ b/sys-apps/pcfclock/Manifest
@@ -0,0 +1,2 @@
+MD5 3cf63cc8a34eab0a9fe8ff1a2c980e84 pcfclock-0.44.ebuild 1076
+MD5 7481cda919930a3db6d92e0b4ab47420 files/digest-pcfclock-0.44 64
diff --git a/sys-apps/pcfclock/files/digest-pcfclock-0.44 b/sys-apps/pcfclock/files/digest-pcfclock-0.44
new file mode 100644
index 000000000000..3b1f50f44a5f
--- /dev/null
+++ b/sys-apps/pcfclock/files/digest-pcfclock-0.44
@@ -0,0 +1 @@
+MD5 35f436caf4e6adb077b72bb49d5af3bb pcfclock-0.44.tar.gz 89914
diff --git a/sys-apps/pcfclock/files/pcfclock.modules.d b/sys-apps/pcfclock/files/pcfclock.modules.d
new file mode 100644
index 000000000000..1e8076359a4f
--- /dev/null
+++ b/sys-apps/pcfclock/files/pcfclock.modules.d
@@ -0,0 +1,4 @@
+# Support for pcfclock driver
+alias char-major-181 pcfclock
+alias /dev/pcfclock* /dev/pcfclock
+probeall /dev/pcfclock pcfclock
diff --git a/sys-apps/pcfclock/pcfclock-0.44.ebuild b/sys-apps/pcfclock/pcfclock-0.44.ebuild
new file mode 100644
index 000000000000..d4cc9b5ac0c1
--- /dev/null
+++ b/sys-apps/pcfclock/pcfclock-0.44.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/pcfclock/pcfclock-0.44.ebuild,v 1.1 2004/07/18 07:01:22 vapier Exp $
+
+DESCRIPTION="driver for the parallel port radio clock sold by Conrad Electronic"
+HOMEPAGE="http://www-stud.ims.uni-stuttgart.de/~voegelas/pcf.html"
+SRC_URI="http://www-stud.ims.uni-stuttgart.de/~voegelas/pcfclock/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/linux-sources"
+
+src_compile() {
+ econf --with-linux=/usr/src/linux || die
+ env -u ARCH emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc AUTHORS ChangeLog NEWS README THANKS
+ insinto /etc/modules.d
+ newins ${FILESDIR}/pcfclock.modules.d ${PN}
+}
+
+pkg_postinst() {
+ [ "${ROOT}" == "/" ] && /sbin/update-modules
+}