diff options
author | Jan Lübbe <jluebbe@debian.org> | 2008-07-02 13:53:13 +0000 |
---|---|---|
committer | Jan Lübbe <jluebbe@debian.org> | 2008-07-02 13:53:13 +0000 |
commit | b85f5d16a791a5f65bc10be3b257b207821681ba (patch) | |
tree | d499535022e6f3f035d974699064775e36ba8097 /packages/openmoko-projects/illume-theme_svn.bb | |
parent | bb8916484f8df71fec0cf59c4352f72cc5b84819 (diff) |
illume: sync to org.openmoko.asu.dev
Diffstat (limited to 'packages/openmoko-projects/illume-theme_svn.bb')
-rw-r--r-- | packages/openmoko-projects/illume-theme_svn.bb | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/packages/openmoko-projects/illume-theme_svn.bb b/packages/openmoko-projects/illume-theme_svn.bb index b360d3b14a..3ea672117f 100644 --- a/packages/openmoko-projects/illume-theme_svn.bb +++ b/packages/openmoko-projects/illume-theme_svn.bb @@ -4,27 +4,22 @@ LICENSE = "MIT/BSD" PACKAGE_ARCH="all" PV = "0.0+svnr${SRCREV}" -PR = "r4" +PR = "r5" SRC_URI = "svn://svn.projects.openmoko.org/svnroot/;module=illume;proto=https" S = "${WORKDIR}/illume" -python do_unpack_append() { - bb.note("Unpacking to %s" % os.getcwd()) - os.system("cd illume; tar -xz --no-same-owner -f misc-data/untar-me-from-root.tar.gz") -} - CONFFILES_${PN} = "${sysconfdir}/enlightenment/default_profile" FILES_${PN} = "${sysconfdir}/enlightenment ${datadir}/enlightenment" do_install() { install -d ${D}${sysconfdir}/enlightenment install -d ${D}${datadir}/enlightenment/data/themes/ - install -d ${D}${datadir}/enlightenment/data/config/ + install -d ${D}${datadir}/enlightenment/data/init/ # Make illume the default profile echo 'E_PROFILE="-profile illume"' > ${D}${sysconfdir}/enlightenment/default_profile install -m 0644 ${S}/misc-data/illume.edj ${D}${datadir}/enlightenment/data/themes/ - cp -pPR ${S}/.e/e/config/default ${D}${datadir}/enlightenment/data/config/illume + install -m 0644 ${S}/misc-data/illume_init.edj ${D}${datadir}/enlightenment/data/init/ } |