aboutsummaryrefslogtreecommitdiffstats
path: root/packages/leafpad
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@rpsys.net>2006-03-23 23:40:23 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-03-23 23:40:23 +0000
commit2e51a053eff454d36e943e50610d823e0c5d320d (patch)
tree7799641c6d7f9f24b0fd313e57a983c19f13ec91 /packages/leafpad
parent3bf85c68c6f20b1d7119d61d38f35916287f68bc (diff)
downloadopenembedded-2e51a053eff454d36e943e50610d823e0c5d320d.tar.gz
Add leafpad 0.8.4
Diffstat (limited to 'packages/leafpad')
-rw-r--r--packages/leafpad/.mtn2git_empty0
-rw-r--r--packages/leafpad/files/.mtn2git_empty0
-rw-r--r--packages/leafpad/files/leafpad.desktop11
-rw-r--r--packages/leafpad/files/leafpad.pngbin0 -> 1950 bytes
-rw-r--r--packages/leafpad/leafpad_0.8.4.bb21
5 files changed, 32 insertions, 0 deletions
diff --git a/packages/leafpad/.mtn2git_empty b/packages/leafpad/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/leafpad/.mtn2git_empty
diff --git a/packages/leafpad/files/.mtn2git_empty b/packages/leafpad/files/.mtn2git_empty
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/packages/leafpad/files/.mtn2git_empty
diff --git a/packages/leafpad/files/leafpad.desktop b/packages/leafpad/files/leafpad.desktop
new file mode 100644
index 0000000000..0e582794ea
--- /dev/null
+++ b/packages/leafpad/files/leafpad.desktop
@@ -0,0 +1,11 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=Notes
+Exec=/usr/bin/leafpad
+Icon=leafpad.png
+Terminal=false
+Type=Application
+Categories=Utility;PIM;
+SingleInstance=true
+StartupNotify=true
+
diff --git a/packages/leafpad/files/leafpad.png b/packages/leafpad/files/leafpad.png
new file mode 100644
index 0000000000..c5ee0cff85
--- /dev/null
+++ b/packages/leafpad/files/leafpad.png
Binary files differ
diff --git a/packages/leafpad/leafpad_0.8.4.bb b/packages/leafpad/leafpad_0.8.4.bb
new file mode 100644
index 0000000000..c26f149777
--- /dev/null
+++ b/packages/leafpad/leafpad_0.8.4.bb
@@ -0,0 +1,21 @@
+LICENSE = "GPLv2"
+DEPENDS = "gtk+"
+SRC_URI = "http://savannah.nongnu.org/download/${PN}/${PN}-${PV}.tar.gz \
+ file://leafpad.desktop \
+ file://leafpad.png"
+PR = "r1"
+
+inherit autotools pkgconfig
+
+EXTRA_OECONF = " --enable-chooser --disable-gtktest --disable-print"
+
+do_install_append () {
+ install -d ${D}/${datadir}
+ install -d ${D}/${datadir}/applications
+ install -d ${D}/${datadir}/pixmaps/
+
+ install -m 0644 ${WORKDIR}/leafpad.png ${D}/${datadir}/pixmaps
+ install -m 0644 ${WORKDIR}/leafpad.desktop ${D}/${datadir}/applications
+}
+
+FILES_${PN} += "${datadir}/applications/leafpad.desktop ${datadir}/pixmaps/leafpad.png"