diff options
author | Michael Lauer <mickey@vanille-media.de> | 2004-05-03 12:35:23 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2004-05-03 12:35:23 +0000 |
commit | 1da2abbce57e058b927fb868b86ce5054848e341 (patch) | |
tree | c1a95f7a123f7561605bdb58cea6bcb27ac2034e | |
parent | 3e2a759581010c18789670f8aefd24f3e4f969ef (diff) |
need to distinguish RDEPENDS and DEPENDS, however only in OPIE_LIBS
BKrev: 40963c8bDejofk8qjVoirqZDzju-Mw
-rw-r--r-- | meta/opie-image.oe | 47 | ||||
-rw-r--r-- | ntp/ntp_4.1.2.oe | 2 |
2 files changed, 48 insertions, 1 deletions
diff --git a/meta/opie-image.oe b/meta/opie-image.oe index e69de29bb2..1b93e46b26 100644 --- a/meta/opie-image.oe +++ b/meta/opie-image.oe @@ -0,0 +1,47 @@ +export IMAGE_BASENAME = "opie-image" + +# +# Libraries and Files to get the launcher up and running +# + +OPIE_LIBS = "libqte2 qpf-bitstream-vera-small libqpe1 libopiecore2 libopieui2 libopienet2 libopiepim2 libopiemm2" +OPIE_LIBS_DEPEND = "qte-for-opie libopie2 qpf-bitstream-vera" +OPIE_BASE = "opie-qcop opie-quicklauncher opie-taskbar" + +# +# Things for reasonable bootstrap image +# + +OPIE_BASE_APPLETS = "opie-aboutapplet opie-clockapplet opie-logoutapplet opie-suspendapplet \ + opie-batteryapplet opie-homeapplet opie-multikeyapplet opie-rotateapplet \ + opie-volumeapplet opie-clipboardapplet opie-irdaapplet opie-restartapplet \ + opie-screenshotapplet opie-vtapplet opie-cardmon" + +OPIE_BASE_APPS = "opie-aqpkg opie-console" + +OPIE_BASE_SETTINGS = "opie-light-and-power opie-appearance opie-systemtime" + +# +# Additional things for a standard 16MB distribution +# + +OPIE_PIM = "opie-alarm opie-addressbook opie-datebook opie-textedit opie-todo opie-today" + +OPIE_EXTRA_APPLETS = "" + +OPIE_EXTRA_APPS = "opie-advancedfm" + +OPIE_EXTRA_SETTINGS = "" + +# +# Putting it altogether. Better state IPKG_INSTALL and DEPENDS twice, because library names != package names. +# + +export IPKG_INSTALL = "task-bootstrap ${OPIE_LIBS} ${OPIE_BASE} ${OPIE_BASE_APPLETS} ${OPIE_BASE_SETTINGS} ${OPIE_BASE_APPS} \ + ${OPIE_PIM} ${OPIE_EXTRA_APPLETS} ${OPIE_EXTRA_SETTINGS} ${OPIE_EXTRA_APPS}" + +DEPENDS = "task-bootstrap ${OPIE_LIBS_DEPEND} ${OPIE_BASE} ${OPIE_BASE_APPLETS} ${OPIE_BASE_SETTINGS} ${OPIE_BASE_APPS} \ + ${OPIE_PIM} ${OPIE_EXTRA_APPLETS} ${OPIE_EXTRA_SETTINGS} ${OPIE_EXTRA_APPS}" + + +inherit image_ipk diff --git a/ntp/ntp_4.1.2.oe b/ntp/ntp_4.1.2.oe index b2891973a6..d3f74b7b77 100644 --- a/ntp/ntp_4.1.2.oe +++ b/ntp/ntp_4.1.2.oe @@ -5,7 +5,7 @@ or satellite receiver or modem." SECTION = "net" PRIORITY = "optional" DEPENDS = "virtual/libc openssl" -PROVIDES = "ntpdate" +RPROVIDES = "ntpdate" SRC_URI = "http://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-${PV}.tar.gz \ file://${FILESDIR}/configure.patch;patch=1" |